Polarcraft/web/.eslintrc

18 lines
349 B
Plaintext
Raw Normal View History

2023-04-20 19:22:44 +02:00
{
"root": true,
"extends": ["@nuxt/eslint-config"],
"rules": {
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 4
},
"multiline": {
"max": 2
}
}],
"vue/multi-word-component-names": "off",
"vue/singleline-html-element-content-newline": "off",
"no-undef": "off"
}
}