Polarcraft/webv2/.eslintrc
Xeovalyte c8a4507253
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 1s
feat: Added dashboard welcome message
2023-06-12 16:48:38 +02:00

21 lines
531 B
Plaintext

{
"root": true,
"extends": ["eslint:recommended", "@nuxtjs/eslint-config-typescript", "plugin:tailwindcss/recommended"],
"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",
"no-console": "off",
"space-before-function-paren": "off",
"tailwindcss/no-custom-classname": "off"
}
}