mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Fix eslint config
This commit is contained in:
parent
7f965dfb08
commit
13d667394b
1 changed files with 4 additions and 4 deletions
|
@ -8,9 +8,9 @@ module.exports = {
|
|||
ecmaVersion: 2020,
|
||||
},
|
||||
rules: {
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"vue/multi-word-component-names": "off",
|
||||
"vue/no-reserved-component-names": "off",
|
||||
"no-console": process.env.NODE_ENV === "production" ? 1 : 0,
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? 1 : 0,
|
||||
"vue/multi-word-component-names": 0,
|
||||
"vue/no-reserved-component-names": 0,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue