-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathts.js
100 lines (100 loc) · 2.26 KB
/
ts.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
93
94
95
96
97
98
99
100
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:prettier/recommended'
],
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
},
plugins: ['@typescript-eslint'],
env: {
node: true,
browser: true,
es6: true,
commonjs: true
},
settings: {
'import/resolver': {
typescript: true,
node: true
}
},
overrides: [
{
extends: ['plugin:prettier/recommended'],
files: ['./**/*.json'],
// TODO: Check why this rule has to be disabled for JSON files.
rules: {
"@typescript-eslint/no-unused-expressions": "off"
}
},
],
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
ignoreRestSiblings: true,
varsIgnorePattern: '^[iI]gnored',
argsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^ignore'
}
],
'@typescript-eslint/member-delimiter-style': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/restrict-template-expressions': [
'error',
{
'allowNumber': true,
'allowNullish': false,
'allowBoolean': false,
'allowRegExp': false,
'allowNever': false,
}
],
'@typescript-eslint/consistent-type-definitions': [
'error',
'type'
],
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'unknown',
'parent',
'sibling',
'index',
'object',
'type',
],
alphabetize: {
order: 'asc',
orderImportKind: 'asc',
caseInsensitive: true,
},
'newlines-between': 'never',
warnOnUnassignedImports: true,
named: true
},
],
'no-console': [
'error',
{
allow: ['warn', 'error', 'assert']
}
],
'no-implicit-coercion': 'error',
curly: ['error', 'all'],
'object-shorthand': ['error'],
eqeqeq: 'error',
'arrow-body-style': 'error'
}
}