mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 06:25:24 +00:00
21 lines
470 B
JSON
21 lines
470 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"node": false
|
||
|
},
|
||
|
"extends": [
|
||
|
/** @see https://eslint.vuejs.org/rules/ */
|
||
|
"plugin:vue/vue3-recommended"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"ecmaVersion": 12,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
/** These rules are disabled because they are incompatible with prettier */
|
||
|
"vue/html-self-closing": "off",
|
||
|
"vue/singleline-html-element-content-newline": "off"
|
||
|
}
|
||
|
}
|