UNPKG
@iflow/eslint-config
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
ESLint Configuration
@iflow/eslint-config
/
rules
/
variables.js
12 lines
(11 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
= { rules: {
"no-restricted-globals"
:
"off"
,
"no-undef-init"
:
"off"
,
"no-delete-var"
:
"warn"
,
"no-shadow"
:
"off"
,
"no-shadow-restricted-names"
:
"error"
,
"no-undef"
:
"warn"
,
"no-unused-vars"
:
"off"
} };