diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -51,7 +51,7 @@ - [ ] "id-match" - [ ] "implicit-arrow-linebreak" - [ ] "indent" -- [ ] "indent-legacy" +- [X] "indent-legacy" - [ ] "init-declarations" - [ ] "jsx-quotes" - [ ] "key-spacing" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 17a1f02..419a068 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -3,6 +3,9 @@ "error", "always" ], + "indent-legacy": [ + "off" + ], "no-tabs": [ "error", { |