mirror of
https://github.com/Decicus/DecAPI-Docs.git
synced 2024-11-21 20:42:29 +01:00
20 lines
490 B
JavaScript
20 lines
490 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: ["plugin:vue/essential", "@vue/airbnb"],
|
|
parserOptions: {
|
|
parser: "babel-eslint"
|
|
},
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
indent: ["error", 4],
|
|
'max-len': ['error', {
|
|
code: 250,
|
|
ignoreUrls: true,
|
|
}],
|
|
}
|
|
};
|