-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
91 lines (91 loc) · 2.7 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
{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"airbnb",
"prettier"
],
"plugins": ["react", "jsx-a11y"],
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true,
"ecmaFeatures": {
"ecmaVersion": 6,
"sourceType": "module",
"jsx": true,
"modules": true
}
},
"rules": {
"global-require": 0,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"import/no-named-default": 0,
"import/extensions": [0, { "js": "never", "json": "always" }],
"import/order": 0,
"class-methods-use-this": 0,
"no-undef": 0,
"no-restricted-globals": 0,
"no-nested-ternary": 0,
"no-restricted-syntax": 0,
"no-prototype-builtins": 0,
"radix": [0, "as-needed"],
"comma-dangle": [0, "never"],
"arrow-parens": [0, "as-needed"],
"react/jsx-one-expression-per-line": 0,
"react/display-name": 0,
"react/prop-types": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-indent-props": [0, 2],
"react/jsx-indent": [0, 2],
"react/destructuring-assignment": 0,
"react/react-in-jsx-scope": 0,
"react/button-has-type": 0,
"react/no-array-index-key": 0,
"react/jsx-curly-newline": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-wrap-multilines": [
0,
{ "arrow": true, "return": true, "declaration": true }
],
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/label-has-associated-control": [
0,
{
"required": {
"some": ["nesting", "id"]
}
}
],
"jsx-a11y/label-has-for": [
0,
{
"required": {
"some": ["nesting", "id"]
}
}
]
},
"settings": {
"import/resolver": {
"alias": {
"map": [
["@styleguide/components/*", "./packages/styleguide/src/components"],
["@styleguide/layouts/*", "./packages/styleguide/src/layouts"],
["@styleguide/public/*", "./packages/styleguide/src/public"],
["@app/containers/*", "./packages/app/src/containers"],
["@app/hooks/*", "./packages/app/src/hooks"],
["@app/layouts/*", "./packages/app/src/layouts"],
["@app/pages/*", "./packages/app/src/pages"],
["@app/public/*", "./packages/app/src/public"],
["@app/utils/*", "./packages/app/src/utils"],
["@site/components", "./packages/site/src/components"],
["@site/hooks", "./packages/site/src/hooks"],
["@site/layouts/*", "./packages/site/src/layouts"],
["@site/pages/*", "./packages/site/src/pages"],
["@site/public/*", "./packages/site/src/public"]
]
}
}
}
}