-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.js
45 lines (44 loc) · 1.09 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
44
45
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
jest: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
],
globals: {
Atomics: 'readonly',
'jest/globals': true,
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'import',
'jest',
'react',
'react-hooks',
],
rules: {
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'no-duplicate-imports': 'error',
'quote-props': ['error', 'as-needed', {unnecessary:true}],
// Forbid unnecessary backticks
// https://github.com/prettier/eslint-config-prettier/blob/master/README.md#forbid-unnecessary-backticks
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: false }],
},
settings: {
react: {
version: 'latest'
}
}
};