2018-07-20 04:31:44 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
2020-05-25 22:12:22 +00:00
|
|
|
node: true
|
|
|
|
},
|
2020-05-26 00:33:24 +00:00
|
|
|
extends: ["plugin:vue/essential", "@vue/airbnb"],
|
2020-05-25 22:12:22 +00:00
|
|
|
parserOptions: {
|
|
|
|
parser: "babel-eslint"
|
2018-07-20 04:31:44 +00:00
|
|
|
},
|
|
|
|
rules: {
|
2020-05-25 22:12:22 +00:00
|
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
2020-05-26 00:33:24 +00:00
|
|
|
"import/no-extraneous-dependencies": ["error", { devDependencies: true }]
|
2018-07-20 04:31:44 +00:00
|
|
|
}
|
2020-05-25 22:12:22 +00:00
|
|
|
};
|