2023-06-01 22:06:11 +02:00
|
|
|
{
|
2023-06-04 10:26:36 +02:00
|
|
|
"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",
|
2023-06-04 22:06:28 +02:00
|
|
|
"no-undef": "off",
|
2023-06-06 18:22:36 +02:00
|
|
|
"no-console": "off",
|
|
|
|
"space-before-function-paren": "off"
|
2023-06-04 10:26:36 +02:00
|
|
|
}
|
2023-06-01 22:06:11 +02:00
|
|
|
}
|