$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>javascript - error Expected 1 line break before closing bracket, but no line breaks found vuehtml-closing-bracket-newline - Stac|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

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

matteradmin13PV0评论

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.

Post a comment

comment list (0)

  1. No comments so far