Skip to content

Commit

Permalink
Updated lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-vashishtha committed May 28, 2022
1 parent 31d5d29 commit 8b421aa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ module.exports = {
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
"vue/multi-word-component-names": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
}
}

0 comments on commit 8b421aa

Please sign in to comment.