From bef8d52a776912dfa9960a2672fc220cdec46ae8 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 14:40:47 +0400 Subject: Rule "no-tabs" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/eslint.json | 9 ++++++++- 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 + } + ] +} -- cgit v1.2.3