forked from sanity-io/sanity-plugin-mux-input
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
43 lines (43 loc) · 718 Bytes
/
Copy path.eslintrc
File metadata and controls
43 lines (43 loc) · 718 Bytes
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
{
"env": {
"node": false,
"browser": true
},
"parser": "babel-eslint",
"extends": [
"eslint-config-sanity",
"prettier",
"prettier/react"
],
"rules": {
"react/jsx-uses-vars": [2],
"newline-per-chained-call": 0,
"sort-imports": 0,
"import/no-unresolved": [
"error",
{
"ignore": [
".*:.*"
]
}
],
"prettier/prettier": "error",
"import/no-extraneous-dependencies": "off",
"import/unambiguous": "off"
},
"globals": {
"__DEV__": true
},
"settings": {
"import/ignore": [
"\\.css$",
".*node_modules.*",
".*:.*"
]
},
"plugins": [
"import",
"prettier",
"react"
]
}