Skip to content

Commit

Permalink
Merge branch 'main' into fix/scss
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugma committed Oct 24, 2024
1 parent 1c22e90 commit 19f731b
Show file tree
Hide file tree
Showing 31 changed files with 304 additions and 939 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"vueIndentScriptAndStyle": false,
"endOfLine": "auto"
"endOfLine": "auto",
"singleAttributePerLine": true
}
20 changes: 12 additions & 8 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,21 @@ const vueLint = {

'vue/custom-event-name-casing': ['error', 'camelCase'],

'vue/max-attributes-per-line': [
'warn',
'vue/html-self-closing': [
'error',
{
singleline: {
max: 1
html: {
void: 'always',
normal: 'always',
component: 'always'
},
multiline: {
max: 1
}
svg: 'always',
math: 'always'
}
]
],

'vue/singleline-html-element-content-newline': ['off'],
'vue/html-indent': ['off']
}
}

Expand Down
Loading

0 comments on commit 19f731b

Please sign in to comment.