File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,21 @@ const customTypescriptRules: Linter.RulesRecord = {
9494 // https://typescript-eslint.io/rules/no-unsafe-return/
9595 // should not be forced by default, turn on when you really need it
9696 "off" ,
97+ ] ,
98+ "@typescript-eslint/no-unsafe-assignment" : [
99+ // https://typescript-eslint.io/rules/no-unsafe-assignment/
100+ // should not be forced by default, turn on when you really need it
101+ "off" ,
102+ ] ,
103+ "@typescript-eslint/no-unsafe-member-access" : [
104+ // https://typescript-eslint.io/rules/no-unsafe-member-access/
105+ // should not be forced by default, turn on when you really need it
106+ "off" ,
107+ ] ,
108+ "@typescript-eslint/no-unsafe-argument" : [
109+ // https://typescript-eslint.io/rules/no-unsafe-argument/
110+ // should not be forced by default, turn on when you really need it
111+ "off" ,
97112 ]
98113} ;
99114
You can’t perform that action at this time.
0 commit comments