mirror of https://github.com/go-gitea/gitea.git
Enable `vue/html-closing-bracket-spacing` eslint rule (#24987)
Enable [`vue/html-closing-bracket-spacing`](https://eslint.vuejs.org/rules/html-closing-bracket-spacing.html) and set it to never add any useless spaces inside tags. All issues were fixed automatically with `make lint-js-fix`.
This commit is contained in:
parent
085a8857f9
commit
e06f3d2ee5
|
@ -10,5 +10,5 @@ env:
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
vue/attributes-order: [0]
|
vue/attributes-order: [0]
|
||||||
vue/html-closing-bracket-spacing: [0]
|
vue/html-closing-bracket-spacing: [2, {startTag: never, endTag: never, selfClosingTag: never}]
|
||||||
vue/max-attributes-per-line: [0]
|
vue/max-attributes-per-line: [0]
|
||||||
|
|
Loading…
Reference in New Issue