File tree 2 files changed +176
-60
lines changed
2 files changed +176
-60
lines changed Original file line number Diff line number Diff line change
1
+ env :
2
+ es6 : true
3
+ node : true
4
+ extends : ' eslint:recommended'
5
+ globals :
6
+ api : false
7
+ application : false
8
+ rules :
9
+ indent :
10
+ - error
11
+ - 2
12
+ - SwitchCase : 1
13
+ VariableDeclarator :
14
+ var : 2
15
+ let : 2
16
+ const : 3
17
+ MemberExpression : 1
18
+ linebreak-style :
19
+ - error
20
+ - unix
21
+ quotes :
22
+ - error
23
+ - single
24
+ semi :
25
+ - error
26
+ - always
27
+ eqeqeq :
28
+ - error
29
+ - always
30
+ no-loop-func :
31
+ - error
32
+ strict :
33
+ - error
34
+ - global
35
+ block-spacing :
36
+ - error
37
+ - always
38
+ brace-style :
39
+ - error
40
+ - 1tbs
41
+ - allowSingleLine : true
42
+ camelcase :
43
+ - error
44
+ comma-style :
45
+ - error
46
+ - last
47
+ comma-spacing :
48
+ - error
49
+ - before : false
50
+ after : true
51
+ eol-last :
52
+ - error
53
+ func-call-spacing :
54
+ - error
55
+ - never
56
+ key-spacing :
57
+ - error
58
+ - beforeColon : false
59
+ afterColon : true
60
+ mode : minimum
61
+ keyword-spacing :
62
+ - error
63
+ - before : true
64
+ after : true
65
+ overrides :
66
+ function :
67
+ after : false
68
+ max-len :
69
+ - error
70
+ - code : 80
71
+ ignoreUrls : true
72
+ max-nested-callbacks :
73
+ - error
74
+ - max : 7
75
+ new-cap :
76
+ - error
77
+ - newIsCap : true
78
+ capIsNew : true
79
+ properties : true
80
+ new-parens :
81
+ - error
82
+ no-lonely-if :
83
+ - error
84
+ no-trailing-spaces :
85
+ - error
86
+ no-unneeded-ternary :
87
+ - error
88
+ no-whitespace-before-property :
89
+ - error
90
+ object-curly-spacing :
91
+ - error
92
+ - always
93
+ operator-assignment :
94
+ - error
95
+ - always
96
+ operator-linebreak :
97
+ - error
98
+ - after
99
+ semi-spacing :
100
+ - error
101
+ - before : false
102
+ after : true
103
+ space-before-blocks :
104
+ - error
105
+ - always
106
+ space-before-function-paren :
107
+ - error
108
+ - never
109
+ space-in-parens :
110
+ - error
111
+ - never
112
+ space-infix-ops :
113
+ - error
114
+ space-unary-ops :
115
+ - error
116
+ - words : true
117
+ nonwords : false
118
+ overrides :
119
+ typeof : false
120
+ no-unreachable :
121
+ - error
122
+ no-global-assign :
123
+ - error
124
+ no-self-compare :
125
+ - error
126
+ no-unmodified-loop-condition :
127
+ - error
128
+ no-constant-condition :
129
+ - error
130
+ - checkLoops : false
131
+ no-console :
132
+ - off
133
+ no-useless-concat :
134
+ - error
135
+ no-useless-escape :
136
+ - error
137
+ no-shadow-restricted-names :
138
+ - error
139
+ no-use-before-define :
140
+ - error
141
+ - functions : false
142
+ arrow-body-style :
143
+ - error
144
+ - as-needed
145
+ arrow-spacing :
146
+ - error
147
+ no-confusing-arrow :
148
+ - error
149
+ - allowParens : true
150
+ no-useless-computed-key :
151
+ - error
152
+ no-useless-rename :
153
+ - error
154
+ no-var :
155
+ - error
156
+ object-shorthand :
157
+ - error
158
+ - always
159
+ prefer-arrow-callback :
160
+ - error
161
+ prefer-const :
162
+ - error
163
+ prefer-numeric-literals :
164
+ - error
165
+ prefer-rest-params :
166
+ - error
167
+ prefer-spread :
168
+ - error
169
+ rest-spread-spacing :
170
+ - error
171
+ - never
172
+ template-curly-spacing :
173
+ - error
174
+ - never
Original file line number Diff line number Diff line change 1
- # Logs
2
- logs
1
+ node_modules
3
2
* .log
4
- npm-debug.log *
5
- yarn-debug.log *
6
- yarn-error.log *
7
-
8
- # Runtime data
9
- pids
10
- * .pid
11
- * .seed
12
- * .pid.lock
13
-
14
- # Directory for instrumented libs generated by jscoverage/JSCover
15
- lib-cov
16
-
17
- # Coverage directory used by tools like istanbul
18
- coverage
19
-
20
- # nyc test coverage
21
- .nyc_output
22
-
23
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24
- .grunt
25
-
26
- # Bower dependency directory (https://bower.io/)
27
- bower_components
28
-
29
- # node-waf configuration
30
- .lock-wscript
31
-
32
- # Compiled binary addons (https://nodejs.org/api/addons.html)
33
- build /Release
34
-
35
- # Dependency directories
36
- node_modules /
37
- jspm_packages /
38
-
39
- # TypeScript v1 declaration files
40
- typings /
41
-
42
- # Optional npm cache directory
43
- .npm
44
-
45
- # Optional eslint cache
46
- .eslintcache
47
-
48
- # Optional REPL history
49
- .node_repl_history
50
-
51
- # Output of 'npm pack'
52
- * .tgz
53
-
54
- # Yarn Integrity file
55
- .yarn-integrity
56
-
57
- # dotenv environment variables file
58
- .env
59
-
60
- # next.js build output
61
- .next
3
+ .DS_Store
You can’t perform that action at this time.
0 commit comments