This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
.eslintrc.js
84 lines (83 loc) · 2.12 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
const common = {
env: {
node: true,
es6: true,
browser: true,
'jest/globals': true,
},
plugins: ['jest', 'prettier'],
extends: ['airbnb-base', 'plugin:jest/all', 'plugin:prettier/recommended'],
rules: {
'prettier/prettier': 'error',
'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/expect-expect': 'off',
'jest/prefer-expect-assertions': 'off',
'jest/no-test-return-statement': 'off',
'import/prefer-default-export': 'off',
'import/extensions': 'off',
'no-console': 'off',
'no-iterator': 'off',
'no-restricted-syntax': 'off',
'no-await-in-loop': 'off',
'consistent-return': 'off',
'no-shadow': 'off',
'no-unused-vars': 'off',
'no-useless-constructor': 'off',
'no-continue': 'off',
'no-plusplus': 'off',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: ['**/*.spec.ts', '**/tests/**/*', 'jest.config.js'],
},
],
},
}
module.exports = {
root: true,
overrides: [
{
/*
eslint-plugin-markdown only finds javascript code block snippet.
For specific spec, refer to https://github.com/eslint/eslint-plugin-markdown
*/
files: ['**/*.js', '**/*.md'],
...common,
},
{
files: ['**/*.ts'],
parser: '@typescript-eslint/parser',
env: common.env,
plugins: [
...common.plugins,
'@typescript-eslint',
'eslint-plugin-tsdoc',
'import',
],
extends: [
...common.extends,
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
rules: {
...common.rules,
'@typescript-eslint/explicit-function-return-type': 'off',
'tsdoc/syntax': 'warn',
'import/no-unresolved': 'warn',
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
'import/resolver': {
typescript: {},
},
},
},
],
}