-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
43 lines (43 loc) · 1.1 KB
/
.eslintrc.js
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
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
// 'plugin:react-hooks',
'airbnb',
'plugin:jest/recommended',
'plugin:jest-dom/recommended',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 11,
sourceType: 'module',
},
plugins: [
'react',
'jest',
'jest-dom',
],
rules: {
'linebreak-style': ['error','windows'],
'implicit-arrow-linebreak': 0,
'class-methods-use-this': 0,
'no-plusplus': ["off", { "allowForLoopAfterthoughts": true }],
'object-curly-newline': 0,
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
'react/prefer-stateless-function': 'off',
'react/prop-types': 'off',
'react/destructuring-assignment': 'off',
"react/jsx-one-expression-per-line": [0, { allow: "single-child" }],
// "react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
// "react-hooks/exhaustive-deps": "warn", // Checks effect dependencies
},
};