mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 14:59:06 +00:00
e06f3d2ee5
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`.
14 lines
291 B
YAML
14 lines
291 B
YAML
plugins:
|
|
- eslint-plugin-vue
|
|
|
|
extends:
|
|
- ../../../.eslintrc.yaml
|
|
- plugin:vue/vue3-recommended
|
|
|
|
env:
|
|
browser: true
|
|
|
|
rules:
|
|
vue/attributes-order: [0]
|
|
vue/html-closing-bracket-spacing: [2, {startTag: never, endTag: never, selfClosingTag: never}]
|
|
vue/max-attributes-per-line: [0]
|