Skip to content

Commit

Permalink
📦 Chore: fix eslint error notice in indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Molunerfinn committed Apr 16, 2021
1 parent b05139f commit 69e1dc8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ module.exports = {
'plugins': ['@typescript-eslint'],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'off' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"indent": "off",
"@typescript-eslint/indent": ["error", 2]
},
parserOptions: {
parser: '@typescript-eslint/parser'
Expand Down

0 comments on commit 69e1dc8

Please sign in to comment.