fix linter

This commit is contained in:
Philipp Kühn 2021-11-05 13:09:09 +01:00
parent 18a9271611
commit 9055026158

View File

@ -53,11 +53,13 @@ module.exports = {
'max-len': 'off',
'vue/one-component-per-file': 'off',
'vue/this-in-template': ['error', 'never'],
'vue/multi-word-component-names': 'off',
'vue/max-attributes-per-line': ['error', {
singleline: 3,
singleline: {
max: 3,
},
multiline: {
max: 1,
allowFirstLine: false,
},
}],
'vue/singleline-html-element-content-newline': 'off',