-
Notifications
You must be signed in to change notification settings - Fork 335
/
eslint.config.js
127 lines (124 loc) · 2.75 KB
/
eslint.config.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* --------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
const typescriptParser = require('@typescript-eslint/parser');
const typescriptPlugin = require('@typescript-eslint/eslint-plugin');
module.exports = [
{
ignores: [
'client/out/**/*.*',
'server/out/**/*.*'
]
},
{
files: [
'client/src/**/*.ts',
'server/src/**/*.ts'
],
ignores: [
'eslint.config.js',
'playgrounds/**/*.ts'
],
plugins: {
'@typescript-eslint': typescriptPlugin
},
languageOptions: {
sourceType: 'module',
parser: typescriptParser,
parserOptions: {
ecmaVersion: 2020
}
},
rules: {
'semi': 'off',
'@typescript-eslint/semi': 'error',
'@typescript-eslint/member-delimiter-style': ['error' ,{
'multiline': {
'delimiter': 'semi',
'requireLast': true
},
'singleline': {
'delimiter': 'semi',
'requireLast': false
},
'multilineDetection': 'brackets'
}],
'indent': 'off',
'@typescript-eslint/indent': ['warn', 'tab', { 'SwitchCase': 1 } ],
'@typescript-eslint/no-floating-promises': 'error',
'@typescript-eslint/consistent-type-exports': 'error',
'@typescript-eslint/naming-convention': [
'warn',
{
'selector': 'class',
'format': [
'PascalCase'
],
'leadingUnderscore': 'allow'
}
],
'no-extra-semi': 'warn',
'curly': 'warn',
'quotes': ['error', 'single', { 'allowTemplateLiterals': true } ],
'eqeqeq': 'error',
'constructor-super': 'warn',
'prefer-const': [
'warn',
{
'destructuring': 'all'
}
],
'no-buffer-constructor': 'warn',
'no-caller': 'warn',
'no-case-declarations': 'warn',
'no-debugger': 'warn',
'no-duplicate-case': 'warn',
'no-duplicate-imports': 'warn',
'no-eval': 'warn',
'no-async-promise-executor': 'warn',
'no-new-wrappers': 'warn',
'no-redeclare': 'off',
'no-sparse-arrays': 'warn',
'no-throw-literal': 'warn',
'no-unsafe-finally': 'warn',
'no-unused-labels': 'warn',
'no-restricted-globals': [
'warn',
'name',
'length',
'event',
'closed',
'external',
'status',
'origin',
'orientation',
'context'
],
'no-var': 'warn'
}
},
{
files: [
'client/src/**/*.ts',
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.json']
}
}
},
{
files: [
'server/src/**/*.ts',
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.json']
}
},
rules: {
'no-console': 'error'
}
}
];