forked from hammerlab/pileup.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc.json
More file actions
39 lines (37 loc) · 748 Bytes
/
.eslintrc.json
File metadata and controls
39 lines (37 loc) · 748 Bytes
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
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true,
"experimentalObjectRestSpread": true
}
},
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"rules": {
"semi": ["error", "always"],
"quotes": ["off", "double"],
"no-tabs": "off",
"new-cap": "off",
"no-unused-vars": ["error", {"args": "none"}],
"no-console": ["error", { "allow": ["warn", "error", "log"] }],
"react/no-find-dom-node": "warn",
"react/no-string-refs": "warn"
},
"settings": {
"react": {
"pragma": "React",
"version": "15.6.1"
}
}
}