forked from juliencrn/usehooks-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
92 lines (90 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
extends: [
'plugin:react-hooks/recommended',
'plugin:react/recommended',
'plugin:jsx-a11y/recommended',
],
plugins: ['react', 'simple-import-sort', 'prettier', 'jsx-a11y'],
env: {
browser: true,
es6: true,
node: true,
},
settings: {
react: {
version: '16.8.0',
},
},
rules: {
'prettier/prettier': 'warn',
'react/prop-types': 'off',
'sort-imports': 'off',
'import/order': 'off',
'simple-import-sort/exports': 'warn',
'simple-import-sort/imports': [
'warn',
{
groups: [
['^\\u0000'], // side effect (E.g.`import 'normalize.css'`)
['^react$'],
['^[^.]'], // Libs
['^../|^~/|^./'],
],
},
],
},
overrides: [
// Typescript related rules
{
files: [`*.ts`, `*.tsx`],
plugins: [`@typescript-eslint/eslint-plugin`],
extends: ['plugin:@typescript-eslint/recommended'],
rules: {
// We should absolutely avoid using ts-ignore, but it's not always possible.
// particular when a dependencies types are incorrect.
'@typescript-eslint/ban-ts-comment': [
`warn`,
{ 'ts-ignore': `allow-with-description` },
],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
},
},
// Track tree-shaking potential error in the lib
{
files: [`lib/**/!(*.test|*.spec).ts`],
plugins: ['tree-shaking'],
rules: {
'tree-shaking/no-side-effects-in-initialization': 2,
},
},
// Specials rules for testing
{
extends: ['plugin:jest/recommended'],
files: ['**/*.test.ts'],
plugins: ['jest'],
env: {
jest: true,
},
rules: {
// you should turn the original rule off *only* for test files
'@typescript-eslint/unbound-method': 'off',
'jest/unbound-method': 'error',
},
},
],
}