-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
44 lines (44 loc) · 1.04 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
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'prettier',
'airbnb-base',
'plugin:jest/all',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'jest'],
settings: {
'import/resolver': {
alias: {
map: [['@', './src']],
extensions: ['.ts', '.js'],
},
},
},
rules: {
'import/no-unresolved': 'off',
'import/extensions': 'off',
'implicit-arrow-linebreak': 'off',
'import/prefer-default-export': 'off',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-var-requires': 'off',
'jest/no-commented-out-tests': 'off',
'comma-dangle': 'off',
'no-confusing-arrow': 'off',
'prefer-template': 'off',
},
};