@@ -15,23 +15,23 @@ export default {
15
15
* 1. Disable things that are checked by Typescript
16
16
*/
17
17
//Checked by Typescript - ts(2378)
18
- 'getter-return' : false ,
18
+ 'getter-return' : 'off' ,
19
19
// Checked by Typescript - ts(2300)
20
- 'no-dupe-args' : false ,
20
+ 'no-dupe-args' : 'off' ,
21
21
// Checked by Typescript - ts(1117)
22
- 'no-dupe-keys' : false ,
22
+ 'no-dupe-keys' : 'off' ,
23
23
// Checked by Typescript - ts(7027)
24
- 'no-unreachable' : false ,
24
+ 'no-unreachable' : 'off' ,
25
25
// Checked by Typescript - ts(2367)
26
- 'valid-typeof' : false ,
26
+ 'valid-typeof' : 'off' ,
27
27
// Checked by Typescript - ts(2588)
28
- 'no-const-assign' : false ,
28
+ 'no-const-assign' : 'off' ,
29
29
// Checked by Typescript - ts(2588)
30
- 'no-new-symbol' : false ,
30
+ 'no-new-symbol' : 'off' ,
31
31
// Checked by Typescript - ts(2376)
32
- 'no-this-before-super' : false ,
32
+ 'no-this-before-super' : 'off' ,
33
33
// This is checked by Typescript using the option `strictNullChecks`.
34
- 'no-undef' : false ,
34
+ 'no-undef' : 'off' ,
35
35
/**
36
36
* 2. Enable more ideomatic code
37
37
*/
0 commit comments