@eandl/eslint-config
Version:
TIE eslint config
35 lines (34 loc) • 627 B
JavaScript
export default {
"rules": {
"no-unused-vars": [
"warn"
],
"indent": [
"warn",
4,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"warn",
"unix"
],
"quotes": [
"warn",
"single"
],
"semi": [
"warn",
"always"
],
"vue/html-indent": [
"warn",
4
],
"vue/component-name-in-template-casing": [
"error",
"kebab-case"
]
},
}