forked from chanind/hanzi-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
33 lines (33 loc) · 928 Bytes
/
.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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"no-for-of-loops"
],
"rules": {
"id-length": [2, {"exceptions": ["x", "y", "i", "j", "r", "g", "b", "a"]}],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"max-len":[0],
"no-loop-func": [0],
"no-plusplus": [0],
"no-continue": [0],
"no-prototype-builtins": [0],
"no-underscore-dangle": [0],
"jsx-a11y/href-no-hash": [0],
"no-restricted-syntax": [0],
"arrow-body-style": [0],
"object-curly-spacing": [0],
"padded-blocks": [0],
"no-mixed-operators": [0],
"arrow-parens": [0],
"prefer-spread": [0],
"func-names": [0],
"class-methods-use-this": [0],
"no-restricted-properties": [0],
"import/no-extraneous-dependencies": [0],
"import/first": [0],
"space-before-function-paren": [0],
"consistent-return": [0],
"no-for-of-loops/no-for-of-loops": 2,
}
}