forked from vueuse/motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
55 lines (55 loc) · 1.06 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
{
"root": true,
"env": {
"browser": true,
"node": true
},
"ignorePatterns": [
"dist/**/*",
".output/**/*",
".nuxt/**/*",
"*.css",
"*.md"
],
"extends": [
"@nuxtjs/eslint-config-typescript",
"@antfu",
"plugin:prettier-vue/recommended",
"prettier"
],
"settings": {
"import/ignore": [
"vue"
]
},
"rules": {
"semi": "error",
"antfu/if-newline": 0,
"vue/static-class-names-order": "off",
"vue/multi-word-component-names": "off",
"vue/require-component-is": "off",
"vue/no-multiple-template-root": "off",
"vue/no-v-text-v-html-on-component": "off",
"@typescript-eslint/no-unused-vars": [
"off"
],
"@typescript-eslint/semi": [
"error"
],
"@typescript-eslint/comma-dangle": [
"error"
],
"comma-dangle": "error",
"no-unused-vars": 0,
"prettier-vue/prettier": [
"error",
{
"printWidth": 180,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
]
}
}