-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
43 lines (41 loc) · 1.17 KB
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
extends: [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"plugin:@typescript-eslint/eslint-recommended",
"prettier"
],
plugins: ["unused-imports"],
rules: {
"vue/component-tags-order": [
"error",
{
order: ["script", "template", "style"],
},
],
"vue/multi-word-component-names": "off",
"vue/component-api-style": ["error", ["script-setup"]],
"vue/component-name-in-template-casing": "error",
// "vue/block-lang": [
// "error",
// {
// script: { lang: "ts" },
// },
// ],
"vue/define-macros-order": "error",
"vue/no-unused-refs": "error",
"vue/no-useless-v-bind": "error",
"vue/no-v-html": "off",
"vue/require-default-prop": "off",
'vue/valid-v-slot': ['error', {
allowModifiers: true,
}],
"tailwindcss/no-custom-classname": "off",
"no-undef": "off",
"no-console": "error"
},
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser",
},
}