-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
67 lines (67 loc) · 1.73 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
module.exports = {
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
plugins: ['jest', 'import', 'prettier', '@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:prettier/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:jest/recommended',
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
ecmaFeatures: {
jsx: false, // Allows for the parsing of JSX
},
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts'],
},
'import/resolver': {
node: {
extensions: ['.js', '.ts'],
},
},
},
rules: {
'no-constant-condition': ['error', { checkLoops: false }],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-use-before-define': ['error', { functions: false }],
'@typescript-eslint/no-var-requires': 'off',
// Fixes errors about missing `ts` extension on imports
// https://github.com/benmosher/eslint-plugin-import/issues/1615
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
'd.ts': 'never',
},
],
'prettier/prettier': 'warn',
},
overrides: [
{
// Enable the rules specifically for TypeScript files
files: ['*.ts'],
rules: {
'no-dupe-class-members': 'off',
'@typescript-eslint/no-var-requires': ['error'],
},
},
],
env: {
es6: true,
node: true,
'jest/globals': true,
},
globals: {
BigInt: true,
},
};