-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
30 lines (30 loc) · 1004 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": ["airbnb", "prettier", "prettier/react"],
"plugins": ["react", "prettier", "better-styled-components"],
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
"import/extensions": "off",
"no-underscore-dangle": "off",
"react/prop-types": "off",
"import/no-duplicates": "off",
"import/order": "off",
"import/no-self-import": "off",
"import/no-cycle": "off",
"import/no-named-as-default": "off",
"import/no-named-as-default-member": "off",
"import/no-extraneous-dependencies": "off",
"import/named": "off",
"global-require": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"class-methods-use-this": "off",
"import/no-unresolved": "off",
"prettier/prettier": "error"
}
}