mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-04 22:41:24 +08:00
34 lines
583 B
JavaScript
34 lines
583 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
"plugin:vue/vue3-essential",
|
|
"standard-with-typescript",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
overrides: [],
|
|
parserOptions: {
|
|
project: "./tsconfig*.json",
|
|
ecmaVersion: "latest",
|
|
sourceType: "module"
|
|
},
|
|
plugins: [
|
|
"vue",
|
|
"prettier"
|
|
],
|
|
rules: {
|
|
"no-cond-assign": "error",
|
|
"eqeqeq": "error",
|
|
"indent": ["error", 4, {"SwitchCase": 1}],
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
endOfLine: "auto",
|
|
},
|
|
]
|
|
}
|
|
};
|