mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
8c3cee7a72
I found that some lint warnings in my editor are conflicting, and I believe the root cause is using lints designed for Vue 2 instead of Vue 3. We moved to Vue 3 in #20044. I verified that the explicitly disabled rules in the changed file are still part of the `vue/vue3-recommended` set. See [Available rules - eslint-plugin-vue](https://eslint.vuejs.org/rules/) for a full list of lints.
17 lines
312 B
YAML
17 lines
312 B
YAML
plugins:
|
|
- eslint-plugin-vue
|
|
|
|
extends:
|
|
- ../../../.eslintrc.yaml
|
|
- plugin:vue/vue3-recommended
|
|
|
|
env:
|
|
browser: true
|
|
|
|
rules:
|
|
vue/attributes-order: [0]
|
|
vue/component-definition-name-casing: [0]
|
|
vue/html-closing-bracket-spacing: [0]
|
|
vue/max-attributes-per-line: [0]
|
|
vue/one-component-per-file: [0]
|