-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
.eslintrc.js
54 lines (52 loc) · 1.64 KB
/
.eslintrc.js
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
44
45
46
47
48
49
50
51
52
53
54
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:vue/vue3-recommended",
"plugin:tailwindcss/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", "composition"]],
"vue/component-name-in-template-casing": "error",
"vue/block-lang": [
"error",
{
script: { lang: "ts" }
}
],
"vue/define-macros-order": [
"warn",
{
order: ["defineProps", "defineEmits"]
}
],
"vue/define-emits-declaration": ["error", "type-based"],
"vue/define-props-declaration": ["error", "type-based"],
"vue/match-component-import-name": "error",
"vue/no-ref-object-destructure": "error",
"vue/no-unused-refs": "error",
"vue/no-useless-v-bind": "error",
"vue/padding-line-between-tags": "warn",
"vue/prefer-separate-static-class": "error",
"vue/prefer-true-attribute-shorthand": "error",
"vue/no-v-html": "off",
"tailwindcss/no-custom-classname": "off",
"no-undef": "off",
"no-unused-vars": "off",
"no-console": ["warn"]
},
ignorePatterns: ["*.d.ts"],
parser: "vue-eslint-parser",
parserOptions: {
parser: "@typescript-eslint/parser"
}
}