md/.eslintrc.js

28 lines
662 B
JavaScript
Raw Normal View History

2020-01-13 22:16:04 +08:00
module.exports = {
root: true,
env: {
2020-10-20 19:43:11 +08:00
node: true,
},
2020-10-20 19:43:11 +08:00
extends: ["plugin:vue/essential", "@vue/standard"],
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",
},
parserOptions: {
2020-10-20 19:43:11 +08:00
parser: "babel-eslint",
},
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,
},
},
],
};