mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
15 lines
240 B
JavaScript
15 lines
240 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true
|
||
|
},
|
||
|
extends: ["plugin:vue/essential", "@vue/prettier"],
|
||
|
rules: {
|
||
|
"no-console": "off",
|
||
|
"comma-dangle": [2, "never"]
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: "@typescript-eslint/parser"
|
||
|
}
|
||
|
};
|