mirror of
https://github.com/7PH/powerglitch.git
synced 2026-06-16 12:34:00 +02:00
36 lines
564 B
YAML
36 lines
564 B
YAML
env:
|
|
browser: true
|
|
es2021: true
|
|
extends:
|
|
- eslint:recommended
|
|
- plugin:@typescript-eslint/recommended
|
|
- plugin:vue/vue3-recommended
|
|
parserOptions:
|
|
ecmaVersion: latest
|
|
parser: "@typescript-eslint/parser"
|
|
sourceType: module
|
|
plugins:
|
|
- vue
|
|
- "@typescript-eslint"
|
|
rules:
|
|
indent:
|
|
- error
|
|
- 4
|
|
- SwitchCase: 1
|
|
linebreak-style:
|
|
- error
|
|
- unix
|
|
quotes:
|
|
- error
|
|
- single
|
|
semi:
|
|
- error
|
|
- always
|
|
vue/html-indent:
|
|
- warn
|
|
- 4
|
|
vue/attribute-hyphenation:
|
|
- off
|
|
vue/v-on-event-hyphenation:
|
|
- off
|