forked from harunhasdal/react-xhr-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
60 lines (60 loc) · 1.57 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
{
"extends": "airbnb",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"mocha": true
},
"rules": {
"comma-dangle": [2, "never"],
"object-curly-spacing": [2, "never"],
"react/jsx-curly-spacing": [2, "never", {"allowMultiline": false}],
"react/jsx-closing-bracket-location": [1, "after-props"],
"react/sort-comp": 0,
"react/jsx-indent": 0,
"react/no-multi-comp": 1,
"import/no-unresolved": 0,
"no-trailing-spaces": 0,
"no-useless-escape": 0,
"no-unused-vars": 1,
"no-nested-ternary": 0,
"no-console": 0,
"quote-props": 0,
"no-use-before-define": 0,
"radix": [2, "as-needed"],
"no-case-declarations": 0,
"jsx-a11y/img-has-alt": 0,
"max-len": [2, 150, 2, {
"ignoreUrls": true,
"ignoreComments": false
}],
"jsx-uses-react": 0,
"import/imports-first": 0,
"import/newline-after-import": 0,
"react/jsx-filename-extension": 0,
"no-undef": 0,
"import/no-extraneous-dependencies": 0,
"react/jsx-no-target-blank": 0,
"react/self-closing-comp": 0,
"jsx-a11y/label-has-for": 0,
"no-extra-boolean-cast": 0,
"no-void": 0,
"space-unary-ops": 0,
"object-property-newline": 0,
"no-mixed-operators": 0,
"jsx-a11y/href-no-hash": 0,
"react/no-find-dom-node": 0,
"import/no-named-as-default": 0,
"no-multi-str": 0,
"jsx-a11y/no-static-element-interactions": 0,
"react/require-extension": 0,
"class-methods-use-this": 0
}
}