diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -57,7 +57,7 @@ - [X] "key-spacing" - [ ] "keyword-spacing" - [ ] "line-comment-position" -- [ ] "linebreak-style" +- [X] "linebreak-style" - [ ] "lines-around-comment" - [X] "lines-around-directive" - [ ] "lines-between-class-members" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 074c60e..04fda73 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -60,6 +60,10 @@ "mode": "strict" } ], + "linebreak-style": [ + "error", + "unix" + ], "lines-around-directive": [ "off" ], |