diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 12:19:20 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 12:19:20 +0300 |
commit | dd99326c5290a70768c30262e7216444d016582f (patch) | |
tree | 53b8817ebe285ee2fdb344b4066cd17c12332113 | |
parent | 37337f9e0262334299c1b8f64c6c325e8a07e759 (diff) | |
download | eslint-config-dd99326c5290a70768c30262e7216444d016582f.tar.xz eslint-config-dd99326c5290a70768c30262e7216444d016582f.zip |
feat(vue): Rule "html-quotes"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/vue/default.json | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -540,7 +540,7 @@ - [ ] "html-closing-bracket-spacing" - [ ] "html-end-tags" - [X] "html-indent" -- [ ] "html-quotes" +- [X] "html-quotes" - [ ] "html-self-closing" - [ ] "jsx-uses-vars" - [ ] "key-spacing" diff --git a/src/rules/vue/default.json b/src/rules/vue/default.json index e7e45eb..fcbce0b 100644 --- a/src/rules/vue/default.json +++ b/src/rules/vue/default.json @@ -9,6 +9,10 @@ "closeBracket": 0 } ], + "vue/html-quotes": [ + "error", + "double" + ], "vue/script-indent": [ "error", "tab", |