mirror of
https://github.com/owntracks/frontend.git
synced 2026-02-13 20:59:50 +00:00
23 lines
501 B
JavaScript
23 lines
501 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
extends: ["plugin:vue/essential", "@vue/prettier"],
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
trailingComma: "es5",
|
|
printWidth: 80,
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
},
|
|
],
|
|
},
|
|
parserOptions: {
|
|
parser: "babel-eslint"
|
|
}
|
|
};
|