diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 12:09:56 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 12:09:56 +0300 |
commit | f156d807c4facb3e3856e09273b72d7add815fee (patch) | |
tree | 9b7b004cc166813a56c6b474aff6467be2dec53e | |
parent | 6a5695c0b7f03c02a7252a9473171daed0c8eff7 (diff) | |
download | eslint-config-f156d807c4facb3e3856e09273b72d7add815fee.tar.xz eslint-config-f156d807c4facb3e3856e09273b72d7add815fee.zip |
fix(eslint): Rule "no-mixed-spaces-and-tabs"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | src/rules/javascript/default.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rules/javascript/default.json b/src/rules/javascript/default.json index 8f30d7e..91d936f 100644 --- a/src/rules/javascript/default.json +++ b/src/rules/javascript/default.json @@ -292,8 +292,7 @@ } ], "no-mixed-spaces-and-tabs": [ - "error", - "smart-tabs" + "error" ], "no-multi-spaces": [ "error", |