-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
64 lines (64 loc) · 1.55 KB
/
.eslintrc
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
55
56
57
58
59
60
61
62
63
64
{
"root": true,
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["vue", "@typescript-eslint", "prettier", "tailwindcss", "import"],
"extends": [
"eslint:recommended",
"plugin:vue/vue3-essential",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-strongly-recommended",
"plugin:vue/vue3-recommended",
"plugin:prettier/recommended",
"plugin:tailwindcss/recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": "latest",
"parser": "@typescript-eslint/parser",
"sourceType": "module"
},
"ignorePatterns": ["./src/**/*.{js,ts,vue}"],
"rules": {
"no-debugger": "error",
"no-unused-vars": "off",
"quotes": [
"warn",
"single",
{
"avoidEscape": true
}
],
"vue/multi-word-component-names": 0,
"vue/max-attributes-per-line": [
"warn",
{
"singleline": {
"max": 5
},
"multiline": {
"max": 5
}
}
],
"prettier/prettier": [
"warn",
{},
{
"usePrettierrc": true
}
],
"@typescript-eslint/no-unused-vars": "off",
"vue/script-setup-uses-vars": "off",
"tailwindcss/classnames-order": "off",
"tailwindcss/enforces-negative-arbitrary-values": "warn",
"tailwindcss/enforces-shorthand": "warn",
"tailwindcss/migration-from-tailwind-2": "warn",
"tailwindcss/no-arbitrary-value": "off",
"tailwindcss/no-custom-classname": "off",
"tailwindcss/no-contradicting-classname": "error"
}
}