admin管理员组文章数量:1026989
My current .eslintrc.js file has these options set for the eslint-plugin-vue plugin:
"vue/html-closing-bracket-newline": ["error", {
"singleline": "never",
"multiline": "always"
}]
The problem this accepts only this syntax:
<v-flex
xs12
>
<Test />
</v-flex>
How can I ask it to let me write this way instead:
<v-flex
xs12>
<Test />
</v-flex>
If I write the last syntax, ESLint plains:
error Expected 1 line break before closing bracket, but no line breaks\
found vue/html-closing-bracket-newline
My current .eslintrc.js file has these options set for the eslint-plugin-vue plugin:
"vue/html-closing-bracket-newline": ["error", {
"singleline": "never",
"multiline": "always"
}]
The problem this accepts only this syntax:
<v-flex
xs12
>
<Test />
</v-flex>
How can I ask it to let me write this way instead:
<v-flex
xs12>
<Test />
</v-flex>
If I write the last syntax, ESLint plains:
error Expected 1 line break before closing bracket, but no line breaks\
found vue/html-closing-bracket-newline
Share
Improve this question
asked Jan 28, 2019 at 16:35
Billal BEGUERADJBillal BEGUERADJ
22.9k45 gold badges123 silver badges140 bronze badges
1 Answer
Reset to default 1As per documentation
"multiline": "never"
... should fix your issue. Unfortunately, there's no way the rule can be implemented to accept both. It's either never
or always
.
Your pick. But Vue strongly suggests always
.
My current .eslintrc.js file has these options set for the eslint-plugin-vue plugin:
"vue/html-closing-bracket-newline": ["error", {
"singleline": "never",
"multiline": "always"
}]
The problem this accepts only this syntax:
<v-flex
xs12
>
<Test />
</v-flex>
How can I ask it to let me write this way instead:
<v-flex
xs12>
<Test />
</v-flex>
If I write the last syntax, ESLint plains:
error Expected 1 line break before closing bracket, but no line breaks\
found vue/html-closing-bracket-newline
My current .eslintrc.js file has these options set for the eslint-plugin-vue plugin:
"vue/html-closing-bracket-newline": ["error", {
"singleline": "never",
"multiline": "always"
}]
The problem this accepts only this syntax:
<v-flex
xs12
>
<Test />
</v-flex>
How can I ask it to let me write this way instead:
<v-flex
xs12>
<Test />
</v-flex>
If I write the last syntax, ESLint plains:
error Expected 1 line break before closing bracket, but no line breaks\
found vue/html-closing-bracket-newline
Share
Improve this question
asked Jan 28, 2019 at 16:35
Billal BEGUERADJBillal BEGUERADJ
22.9k45 gold badges123 silver badges140 bronze badges
1 Answer
Reset to default 1As per documentation
"multiline": "never"
... should fix your issue. Unfortunately, there's no way the rule can be implemented to accept both. It's either never
or always
.
Your pick. But Vue strongly suggests always
.
本文标签:
版权声明:本文标题:javascript - error Expected 1 line break before closing bracket, but no line breaks found vuehtml-closing-bracket-newline - Stac 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745666709a2162218.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论