mirror of
https://github.com/lstoeferle/vite-vue2-starter
synced 2025-02-23 13:12:18 +08:00
21 lines
446 B
JavaScript
21 lines
446 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
"plugin:vue/essential",
|
|
"eslint:recommended",
|
|
"@vue/typescript/recommended",
|
|
"@vue/prettier",
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
parser: "@typescript-eslint/parser",
|
|
},
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
},
|
|
}
|