4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-17 14:37:07 +00:00
AzuraCast/frontend/.eslintrc.js

16 lines
366 B
JavaScript
Raw Normal View History

2022-12-29 19:53:43 +00:00
module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended'
],
2022-12-29 21:14:53 +00:00
rules: {
"vue/multi-word-component-names": "off",
"vue/html-indent": ["error", 4, {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true
}]
}
2022-12-29 19:53:43 +00:00
}