-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc
28 lines (28 loc) · 801 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
{
"extends": ["airbnb", "prettier", "prettier/react"],
"plugins": ["react"],
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"rules": {
"no-use-before-define": "off",
"no-underscore-dangle": "off",
"no-return-assign": "off",
"no-bitwise": "off",
"no-unused-expressions": ["error", { "allowTaggedTemplates": true }],
"react/prefer-stateless-function": "off",
"react/jsx-filename-extension": "off",
"global-require": "off",
"import/no-webpack-loader-syntax": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/extensions": "off",
"react/destructuring-assignment": "off",
"react/prop-types": "off",
"react/sort-comp": "off"
}
}