Set indent to 4 spaces

This commit is contained in:
Sam Carlton 2020-09-15 19:20:01 -05:00
parent 794b9c43f8
commit 5f8c8ba307
2 changed files with 3 additions and 2 deletions

View file

@ -19,6 +19,7 @@ module.exports = {
// add your custom rules here
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"indent": ['error', 4]
}
}