forked from carbon-design-system/design-system-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 1.13 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"arrow-parens": 0,
"comma-dangle": 0,
"max-len": [
2,
180,
4
],
"no-underscore-dangle": 0,
"global-require": 0,
"new-cap": 0,
"no-mixed-operators": 0,
"no-plusplus": 0,
"no-prototype-builtins": 0,
"no-useless-return": 0,
"semi-spacing": 0,
"space-unary-ops": 0,
"import/first": 0,
"import/newline-after-import": 0,
"import/no-extraneous-dependencies": [
2,
{
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": true
}
],
"import/prefer-default-export": 0,
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/tabindex-no-positive": 0,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-indent": 0,
"react/jsx-wrap-multilines": 0,
"react/no-find-dom-node": 0,
"react/no-string-refs": 0,
"react/prefer-stateless-function": 0,
"react/self-closing-comp": 0
}
}