diff options
author | Valentin Popov <info@valentineus.link> | 2020-04-01 13:51:51 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-04-01 13:51:51 +0300 |
commit | fd0218c01eee01ce937c505df11d860504258ffc (patch) | |
tree | 90d5bdd1c195aa37a0d620c857130eae7d714e10 | |
parent | a3a2934e43d09e81635e2cf7495f8488f7841f44 (diff) | |
download | eslint-config-fd0218c01eee01ce937c505df11d860504258ffc.tar.xz eslint-config-fd0218c01eee01ce937c505df11d860504258ffc.zip |
feat(vue): no-multi-spaces
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/vue/default.json | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -568,7 +568,7 @@ - [ ] "no-duplicate-attributes" - [ ] "no-empty-pattern" - [ ] "no-irregular-whitespace" -- [ ] "no-multi-spaces" +- [X] "no-multi-spaces" - [ ] "no-parsing-error" - [ ] "no-reserved-component-names" - [ ] "no-reserved-keys" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index 376b47c..145c8f2 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -76,6 +76,12 @@ "singleline": 8 } ], + "vue/no-multi-spaces": [ + "error", + { + "ignoreProperties": false + } + ], "vue/no-unused-vars": [ "error" ], |