forked from charliekassel/vuejs-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
82 lines (82 loc) · 1.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"extends": [
"plugin:vue/vue3-recommended"
],
// 2: reports an error, breaking the build.
// 1: report a warning.
// 0: disables rule.
"rules": {
"array-bracket-spacing": [
2,
"always"
],
"comma-dangle": [
2,
"always-multiline"
],
"comma-spacing": [
2,
{
"before": false,
"after": true
}
],
"curly": [
0,
"multi"
],
"eol-last": 2,
"indent": [
2,
2
],
"new-cap": 1,
"no-caller": 2,
"no-console": 1,
"no-cond-assign": 0,
"no-debugger": 2,
"no-new": 0,
"no-return-assign": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"object-curly-spacing": [
2,
"always"
],
"semi": 2,
"strict": 0,
"valid-jsdoc": 0,
"valid-typeof": 2,
"vue/require-default-prop": 0,
"wrap-iife": [
2,
"inside"
],
"quotes": [
2,
"single",
{
"allowTemplateLiterals": true
}
]
},
"globals": {
"__dirname": false,
"console": false,
"document": false,
"exports": false,
"google": false,
"module": false,
"process": false,
"require": false,
"window": false
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"modules": true
},
"ecmaVersion": 2018,
"sourceType": "module"
}
}