🎨 rewrite findCategory

This commit is contained in:
Kevin Van Der Werff
2019-10-21 23:17:10 +02:00
parent 6bca23dca5
commit 43fb35486e
2 changed files with 10 additions and 5 deletions

View File

@@ -20,11 +20,11 @@ module.exports = {
],
// add your custom rules here
rules: {
'semi': ['error', 'never'],
'semi': ['warning', 'never'],
'no-console': 'off',
'vue/max-attributes-per-line': 'off',
'quotes': ['error', 'single', { 'avoidEscape': true }],
'comma-dangle': ['error', 'always-multiline'],
'quotes': ['warning', 'single', { 'avoidEscape': true }],
'comma-dangle': ['warning', 'always-multiline'],
'vue/require-default-prop': 'off',
}
}