-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc
More file actions
28 lines (28 loc) · 788 Bytes
/
.eslintrc
File metadata and controls
28 lines (28 loc) · 788 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
{
"extends": [ "plugin:react/recommended", "plugin:prettier/recommended"],
"plugins": ["prettier","import","react","jsx-a11y"],
"rules": {
"import/order": ["warn", {
"groups": ["builtin", "external", "internal", "parent", "sibling", "index"],
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}],
"prettier/prettier": ["error", {}, { "usePrettierrc": true }],
"import/extensions": ["warn", "never", {"jsx": "always"}],
"react/react-in-jsx-scope": "off",
"react/no-children-prop": "off",
"react/prop-types": "off",
"react/no-unescaped-entities": "off"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"settings": {
"react": {
"version": "16.9.0"
}
}
}