-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
101 lines (95 loc) · 2.32 KB
/
.eslintrc.json
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
{
"globals": {
"__PATH_PREFIX__": "true"
},
"parser": "babel-eslint",
"extends": [
"standard",
"eslint:recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"prettier",
"prettier/react",
"prettier/standard",
"plugin:unicorn/recommended"
],
"plugins": [
"import",
"emotion",
"prettier",
"jsx-a11y",
"standard",
"unicorn"
],
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"node": true
},
"rules": {
"emotion/no-vanilla": "error",
"emotion/import-from-emotion": "error",
"emotion/styled-import": "error",
"no-console": ["warn", { "allow": ["error", "warn"] }],
"jsx-a11y/label-has-associated-control": "off",
"quotes": ["error", "single"],
"prettier/prettier": "error",
"react/prop-types": "off",
"react/prefer-stateless-function": "warn",
"react/sort-prop-types": "error",
"unicorn/filename-case": ["error", { "case": "camelCase" }],
"unicorn/prevent-abbreviations": "off"
},
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "detect"
},
"propWrapperFunctions": [
"forbidExtraProps",
{ "property": "freeze", "object": "Object" },
{ "property": "myFavoriteWrapper" }
],
"linkComponents": ["Hyperlink", { "name": "Link", "linkAttribute": "to" }],
"import/resolver": {
"alias": {
"map": [
["components", "./src/components"],
["elements", "./src/elements"],
["images", "./src/images"],
["pages", "./src/pages"],
["hooks", "./src/hooks"],
["styles", "./src/styles"],
["templates", "./src/templates"],
["theme", "./src/theme"],
["util", "./src/util"]
],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"overrides": [
{
"files": [
"gatsby-browser.js",
"gatsby-config.js",
"gatsby-node.js",
"gatsby-ssr.js",
"wrap-root.js",
"src/templates/*.tsx",
"src/pages/*.tsx",
"test/pages/*.tsx"
],
"rules": {
"unicorn/filename-case": ["error", { "case": "kebabCase" }]
}
}
]
}