AzuraCast/frontend/.eslintrc.js

21 lines
533 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: {
2022-12-30 14:38:34 +00:00
"no-unused-vars": ["error", {
"varsIgnorePattern": "^_|props",
}],
2022-12-30 16:44:47 +00:00
"vue/multi-word-component-names": "off",
2022-12-29 21:14:53 +00:00
"vue/html-indent": ["error", 4, {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true
2022-12-30 16:44:47 +00:00
}],
"vue/no-v-html": "off",
"vue/no-mutating-props": "off"
2022-12-29 21:14:53 +00:00
}
2022-12-29 19:53:43 +00:00
}