1
+ module . exports = {
2
+ extends : [
3
+ "eslint:recommended" ,
4
+ "plugin:@typescript-eslint/eslint-recommended" ,
5
+ "plugin:@typescript-eslint/recommended" ,
6
+ "standard-with-typescript"
7
+ ] ,
8
+ parser : '@typescript-eslint/parser' ,
9
+ "plugins" : [
10
+ "@typescript-eslint"
11
+ ] ,
12
+ root : true ,
13
+ rules : {
14
+ "@typescript-eslint/no-explicit-any" :"off" ,
15
+ "@typescript-eslint/return-await" : "off" ,
16
+ "@typescript-eslint/no-this-alias" : "off" ,
17
+ "@typescript-eslint/no-var-requires" : "off" ,
18
+ "@typescript-eslint/no-unused-vars" : "off" ,
19
+ "@typescript-eslint/restrict-template-expressions" : "off" ,
20
+ "@typescript-eslint/no-misused-promises" : "off" ,
21
+ "@typescript-eslint/strict-boolean-expressions" : "off" ,
22
+ "@typescript-eslint/consistent-type-assertions" : "off" ,
23
+ "@typescript-eslint/no-extraneous-class" : "off" ,
24
+ "@typescript-eslint/no-dynamic-delete" : "off" ,
25
+ "no-this-assignment" : "off" ,
26
+ "no-async-promise-executor" : "off" ,
27
+ "valid-typeof" : "off" ,
28
+ "@typescript-eslint/consistent-type-imports" :"off" ,
29
+ "@typescript-eslint/ban-types" :"off" ,
30
+ "@typescript-eslint/prefer-ts-expect-error" :"off"
31
+ } ,
32
+ } ;
0 commit comments