summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/eslint.json9
2 files changed, 9 insertions, 2 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 8fdb469..9b49ea5 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -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
+ }
+ ]
+}