-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.cjs
66 lines (65 loc) · 1.91 KB
/
.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
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
const path = require("path");
module.exports = {
root: true,
env: {
'node': true,
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'import',
'jsdoc'
],
parserOptions: {
project: path.resolve("./tsconfig.json"),
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
rules: {
'semi': 'off',
'no-shadow': 'off',
'quotes': ['warn', 'single'],
'object-shorthand': 'error',
'no-warning-comments': 'warn',
'@typescript-eslint/semi': ['error'],
'@typescript-eslint/member-delimiter-style': ['error'],
'@typescript-eslint/explicit-member-accessibility': ['error'],
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-unused-vars': ['warn', {
'argsIgnorePattern': '^_'
}],
'@typescript-eslint/naming-convention': [
'warn',
{
selector: "variableLike",
format: ["camelCase"],
leadingUnderscore: "allow",
},
{
selector: "variable",
types: ["boolean"],
format: ["PascalCase"],
prefix: ["is", "should", "has", "can", "did", "will"],
filter: { regex: "^(?!(cancelled|canceled)).*$", match: true },
leadingUnderscore: "allow",
}
],
'@typescript-eslint/no-shadow': ['error', { builtinGlobals: true, ignoreTypeValueShadow: true, }],
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': 'allow-with-description',
'ts-ignore': 'allow-with-description',
'ts-nocheck': true,
'ts-check': false,
minimumDescriptionLength: 3,
}
],
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
'@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true, allowBoolean: true }]
}
};