-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.eslintrc.js
61 lines (61 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
parser: '@typescript-eslint/parser',
env: {
browser: true,
'jest/globals': true,
},
extends: [
'react-app',
'eslint:recommended',
'plugin:jsdoc/recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'prettier',
'plugin:prettier/recommended',
'plugin:cypress/recommended',
'typestrict',
],
rules: {
strict: 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-inferrable-types': 'warn',
'jsdoc/require-param-type': 0,
'jsdoc/require-returns-type': 0,
'jsdoc/require-returns': 0,
'no-console': 1,
'prettier/prettier': 2,
'jest/no-disabled-tests': 'warn',
'jest/no-focused-tests': 'error',
'jest/no-identical-title': 'error',
'jest/prefer-to-have-length': 'warn',
'jest/valid-expect': 'error',
'jest/no-large-snapshots': ['warn', { maxSize: 50, inlineMaxSize: 6 }],
'@typescript-eslint/naming-convention': [
'error',
// variableLike - matches the same as variable, function and parameter
{
selector: 'variableLike',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
},
// typeLike - matches the same as class, interface, typeAlias, enum, typeParameter
{
selector: 'typeLike',
format: ['PascalCase'],
},
],
},
plugins: ['react', '@typescript-eslint', 'prettier', 'jest', 'jsdoc'],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: './tsconfig.json',
},
settings: {
react: {
pragma: 'React',
version: 'detect',
},
},
};