You've already forked AstralRinth
forked from didirus/AstralRinth
39 lines
838 B
JSON
39 lines
838 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:vue/vue3-recommended",
|
|
"plugin:prettier/recommended",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"parser": {
|
|
"js": "espree",
|
|
"jsx": "espree",
|
|
"cjs": "espree",
|
|
"mjs": "espree",
|
|
"ts": "@typescript-eslint/parser"
|
|
},
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"extraFileExtensions": [".vue"],
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"plugins": ["@typescript-eslint", "vue"],
|
|
"rules": {
|
|
"no-console": "off",
|
|
"vue/no-v-html": "off",
|
|
"comma-dangle": ["error", "only-multiline"],
|
|
"vue/multi-word-component-names": "off",
|
|
"import/no-named-as-default": "off"
|
|
}
|
|
}
|