diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/eslint.json | 9 |
2 files changed, 9 insertions, 2 deletions
@@ -187,7 +187,7 @@ - [ ] "no-spaced-func" - [ ] "no-sparse-arrays" - [ ] "no-sync" -- [ ] "no-tabs" +- [X] "no-tabs" - [ ] "no-template-curly-in-string" - [ ] "no-ternary" - [ ] "no-this-before-super" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 0967ef4..531f091 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -1 +1,8 @@ -{} +{ + "no-tabs": [ + "error", + { + "allowIndentationTabs": true + } + ] +} |