javascript - error Expected 1 line break before closing bracket, but no line breaks found vuehtml-closing-bracket-newline - Stac

My current .eslintrc.js file has these options set for the eslint-plugin-vueplugin:"vuehtml-clos

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
Add a ment  | 

1 Answer 1

Reset to default 1

As 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745666710a4639164.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信