-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
34 lines (34 loc) · 910 Bytes
/
.eslintrc
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
{
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/strict",
"plugin:jasmine/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "jasmine"],
"env": {
"jasmine": true
},
"rules": {
"no-bitwise": 0,
"@typescript-eslint/no-extraneous-class": ["off"],
"@typescript-eslint/unbound-method": [
"error",
{
"ignoreStatic": true
}
],
"jasmine/new-line-before-expect": 0,
"jasmine/no-unsafe-spy": ["off"],
"no-console": "warn"
},
"ignorePatterns": ["node_modules", "dist", "kamu.graphql.interface.ts"]
}