mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
28 lines
662 B
JavaScript
28 lines
662 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: ["plugin:vue/essential", "@vue/standard"],
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
camelcase: "off",
|
|
eqeqeq: "off",
|
|
},
|
|
parserOptions: {
|
|
parser: "babel-eslint",
|
|
},
|
|
overrides: [
|
|
{
|
|
files: [
|
|
"**/__tests__/*.{j,t}s?(x)",
|
|
"**/tests/unit/**/*.spec.{j,t}s?(x)",
|
|
],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
};
|