This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
87 lines (85 loc) · 1.66 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
/**
* @file ESLint Configuration
* @see https://eslint.org/docs/user-guide/configuring
*/
const EXTENDS_CONFIG = [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'prettier/@typescript-eslint'
]
module.exports = {
env: {
es6: true,
node: true
},
extends: EXTENDS_CONFIG,
globals: {},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
impliedStrict: true,
jsx: false
},
sourceType: 'module'
},
plugins: [],
rules: {
'@typescript-eslint/camelcase': 0,
'@typescript-eslint/no-explicit-any': 0,
eqeqeq: 1,
'no-ex-assign': 0,
'prefer-arrow-callback': 2,
'prettier/prettier': [
2,
{
usePrettierrc: true
}
],
'sort-keys': [
1,
'asc',
{
caseSensitive: true,
minKeys: 2,
natural: true
}
],
'space-before-function-paren': [
2,
{
anonymous: 'never',
asyncArrow: 'always',
named: 'never'
}
]
},
overrides: [
{
files: ['**/__tests__/**'],
env: {
es6: true,
'jest/globals': true,
node: true
},
extends: EXTENDS_CONFIG.splice(1, 0, 'plugin:jest/recommended')
},
{
files: ['**/*.js'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-var-requires': 0,
'require-jsdoc': 1,
'valid-jsdoc': 1
}
},
{
files: ['.eslintrc.js', '**/webpack.*'],
rules: {
'sort-keys': 0
}
}
],
settings: {}
}