2020-01-13 22:16:04 +08:00
|
|
|
module.exports = {
|
2020-06-25 20:59:10 +08:00
|
|
|
root: true,
|
|
|
|
env: {
|
2020-10-20 19:43:11 +08:00
|
|
|
node: true,
|
2020-06-25 20:59:10 +08:00
|
|
|
},
|
2020-10-20 19:43:11 +08:00
|
|
|
extends: ["plugin:vue/essential", "@vue/standard"],
|
2020-06-25 20:59:10 +08:00
|
|
|
rules: {
|
2020-10-20 19:43:11 +08:00
|
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
|
|
camelcase: "off",
|
|
|
|
eqeqeq: "off",
|
2020-06-25 20:59:10 +08:00
|
|
|
},
|
|
|
|
parserOptions: {
|
2020-10-20 19:43:11 +08:00
|
|
|
parser: "babel-eslint",
|
2020-06-25 20:59:10 +08:00
|
|
|
},
|
2020-10-20 19:43:11 +08:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"**/__tests__/*.{j,t}s?(x)",
|
|
|
|
"**/tests/unit/**/*.spec.{j,t}s?(x)",
|
|
|
|
],
|
|
|
|
env: {
|
|
|
|
jest: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|