mirror of
https://github.com/owntracks/frontend.git
synced 2024-11-15 09:18:17 -07:00
31 lines
623 B
JavaScript
31 lines
623 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",
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["**/__tests__/*.{j,t}s?(x)"],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
};
|