Set vue html indent to 4 spaces

This commit is contained in:
Sam Carlton 2020-09-19 15:40:25 -05:00
parent ce9e24ab28
commit 58f118a9dc

View file

@ -20,6 +20,7 @@ module.exports = {
rules: { rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', '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] 'indent': ['error', 4],
'vue/html-indent': ['error', 4]
} }
} }