forked from tuckerconnelly/carbon-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
56 lines (49 loc) · 1.33 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"babel"
],
"rules": {
"semi": [2, "never"],
"no-trailing-spaces": [2, { "skipBlankLines": true }],
"default-case": 0,
"no-unused-expressions": [2, {
"allowShortCircuit": true,
"allowTernary": true
}],
"no-shadow": 0,
"new-cap": 0,
"func-names": 0,
"no-use-before-define": 0,
"no-confusing-arrow": 0,
"consistent-return": 0,
"object-shorthand": 0,
"brace-style": 0,
"no-lone-blocks": 0,
"no-return-assign": 0,
"no-plusplus": 0,
"global-require": 0,
"generator-star-spacing": 0,
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"arrow-parens": [2, "as-needed"],
"no-continue": 0,
"comma-dangle": [2, "always-multiline"],
"import/no-extraneous-dependencies": 0,
"import/no-named-as-default": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"import/extensions": [2, "never"],
"import/newline-after-import": 0,
"jsx-a11y/anchor-has-content": 0,
"react/jsx-closing-bracket-location": [1, "after-props"],
"react/jsx-filename-extension": 0,
"react/forbid-prop-types": 0,
"react/no-multi-comp": 0,
"react/prefer-stateless-function": 0,
},
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}