29 lines
477 B
Plaintext
29 lines
477 B
Plaintext
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/essential",
|
|
"plugin:prettier/recommended",
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"no-console": "warn"
|
|
},
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/__tests__/*.{j,t}s?(x)",
|
|
"**/tests/unit/**/*.spec.{j,t}s?(x)"
|
|
],
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|
|
]
|
|
} |