-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
32 lines (32 loc) · 956 Bytes
/
.eslintrc.cjs
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
module.exports = {
env: {
node: true
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:prettier/recommended'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
project: './tsconfig.json'
},
plugins: ['@typescript-eslint'],
rules: {
"prettier/prettier": ["error", {
"endOfLine": "auto"
}],
"curly": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/unbound-method': 'off',
quotes: ['error', 'single'],
}
};