forked from morinted/us-to-uk-json-steno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
117 lines (117 loc) · 1.78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{ "parser": "babel-eslint"
, "ecmaFeatures":
{ "forOf": true
, "jsx": true
}
, "rules":
{ "dot-location":
[ 2
, "property"
]
, "strict": 0
, "no-extra-parens": 0
, "no-fallthrough": 0
, "no-trailing-spaces": 1
, "eqeqeq": 1
, "computed-property-spacing":
[ 2
, "never"
]
, "space-infix-ops": 1
, "max-len":
[ 2
, 80
, 2
]
, "indent":
[ 2
, 2
, { "SwitchCase": 1
}
]
, "quotes":
[ 1
, "single"
, "avoid-escape"
]
, "curly":
[ 2
, "multi-line"
]
, "semi":
[ 2
, "never"
]
, "no-unexpected-multiline": 2
, "comma-dangle":
[ 2
, "never"
]
, "comma-style":
[ 2
, "first"
]
, "comma-spacing": 2
, "operator-linebreak":
[ 2
, "after"
]
, "object-curly-spacing": 0
, "prefer-template": 2
, "prefer-arrow-callback": 2
, "space-before-keywords": 2
, "space-before-blocks": 2
, "space-before-function-paren":
[ 1
, "always"
]
, "brace-style":
[ 2
, "1tbs"
]
, "no-multiple-empty-lines":
[ 1
, { "max": 1
}
]
, "arrow-spacing":
[ 1
, { "before": true
, "after": true
}
]
, "no-console": 0
, "no-undef-init": 2
, "handle-callback-err":
[ 2
, "er"
]
}
, "env":
{ "node": false
, "browser": true
, "es6": true
}
, "extends": "eslint:recommended"
, "globals":
{ "require": false
, "__PATH__": false
, "__HOME__": false
, "__USER__": false
, "__DEV__": false
, "window": false
, "module": false
, "process": false
, "__dirname": false
, "Buffer": false
, "describe": false
, "it": false
, "afterEach": false
, "before": false
, "beforeEach": false
, "AWS": false
}
, "plugins":
[ "eslint-plugin-babel"
]
}