1
0
mirror of https://github.com/Decicus/DecAPI-Docs.git synced 2024-11-21 20:42:29 +01:00
Docs/.eslintrc.js
2020-04-30 13:56:37 +02:00

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,
}],
}
};