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

@ -3,7 +3,7 @@ root = true
[*]
indent_style = space
indent_size = 2
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true

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]
}
}