forked from helderfarias/react-materialui-currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
113 lines (109 loc) · 3.56 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
{
"root": true,
"env": {
"es6": true,
"browser": true,
"node": true,
},
"extends": "eslint:recommended",
"rules": {
"array-bracket-spacing": [2, "never"],
"arrow-spacing": 2,
"arrow-parens": 2,
"block-spacing": [2, "always"],
"brace-style": 2,
"comma-dangle": [2, "always-multiline"],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"],
"consistent-this": [2, "self"],
"consistent-return": 0,
"dot-notation": 2,
"dot-location": [2, "property"],
"eqeqeq": [2, "smart"],
"eol-last": 2,
"indent": [2, 4, {"SwitchCase": 1}],
"id-blacklist": [2, "e"],
"jsx-quotes": [2, "prefer-double"],
"keyword-spacing": 2,
"key-spacing": 2,
"max-len": [2, 120, 4],
"new-cap": [0, {"capIsNew": true, "newIsCap": true}],
"no-unused-expressions": 2,
"no-unused-vars": 2,
"no-shadow": 0,
"no-spaced-func": 2,
"no-multiple-empty-lines": 2,
"no-multi-spaces": 2,
"no-undef": 2,
"no-empty-pattern": 2,
"no-dupe-keys": 2,
"no-dupe-args": 2,
"no-duplicate-case": 2,
"no-cond-assign": 2,
"no-extra-semi": 2,
"no-extra-boolean-cast": 2,
"no-trailing-spaces": 2,
"no-unneeded-ternary": 2,
"no-unreachable": 2,
"no-var": 2,
"one-var": [2, "never"],
"operator-linebreak": [2, "after"],
"padded-blocks": [2, "never"],
"prefer-arrow-callback": 0,
"prefer-const": 2,
"prefer-template": 2,
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-infix-ops": 2,
"space-unary-ops": [2, {"words": true, "nonwords": false}],
"yoda": 2,
"strict": 0,
"no-case-declarations": 0,
"babel/object-curly-spacing": [2, "never"],
"react/display-name": 2,
"react/jsx-boolean-value": [2, "always"],
"react/jsx-curly-spacing": 2,
"react/jsx-equals-spacing": 2,
"react/jsx-indent-props": [2, 4],
"react/jsx-max-props-per-line": [2, {"maximum": 3}],
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2,
"react/jsx-pascal-case": 2,
"react/jsx-space-before-closing": 2,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/no-danger": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/no-multi-comp": 0,
"react/no-unknown-property": 2,
"react/no-is-mounted": 2,
"react/prefer-arrow-callback": 0,
"react/prefer-es6-class": 0,
"react/prop-types": 2,
"react/react-in-jsx-scope": 2,
"react/require-extension": 2,
"react/self-closing-comp": 2,
"react/sort-comp": 2,
"react/wrap-multilines": 2,
"react/jsx-indent": [2, 4],
"react/jsx-no-bind": 0,
"react/jsx-no-literals": 0,
"react/jsx-sort-props": 0,
"react/no-set-state": 0
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"plugins": [ "babel", "react" ]
}