diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 13:47:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 13:47:18 +0300 |
commit | d57337cdb7916678fb7249ddc30c337dc12563cd (patch) | |
tree | a832a2197dfe6fe5346dca7ef3cd13a204f7723f | |
parent | a1a87d826632e61306c933a06735c8a2104f2b24 (diff) | |
download | eslint-config-d57337cdb7916678fb7249ddc30c337dc12563cd.tar.xz eslint-config-d57337cdb7916678fb7249ddc30c337dc12563cd.zip |
Rule "indent-legacy"
Signed-off-by: Valentin Popov <info@valentineus.link>
-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", { |