File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -444,6 +444,7 @@ module.exports = {
444
444
'@typescript-eslint/no-floating-promises' : [
445
445
'error' ,
446
446
{
447
+ checkThenables : true ,
447
448
ignoreVoid : true , // Prepend a function call with `void` to mark it as not needing to be await'ed, which silences this rule.
448
449
ignoreIIFE : true
449
450
}
@@ -527,6 +528,7 @@ module.exports = {
527
528
// Also disable `no-constant-condition` when this is enabled
528
529
// '@typescript-eslint/no-unnecessary-condition': 'error',
529
530
531
+ '@typescript-eslint/no-unnecessary-parameter-property-assignment' : 'error' ,
530
532
'@typescript-eslint/no-unnecessary-qualifier' : 'error' ,
531
533
'@typescript-eslint/no-unnecessary-type-arguments' : 'error' ,
532
534
'@typescript-eslint/no-unnecessary-type-assertion' : 'error' ,
Original file line number Diff line number Diff line change 45
45
" simple"
46
46
],
47
47
"devDependencies" : {
48
- "@typescript-eslint/eslint-plugin" : " ^7.11 .0" ,
49
- "@typescript-eslint/parser" : " ^7.11 .0" ,
48
+ "@typescript-eslint/eslint-plugin" : " ^7.16 .0" ,
49
+ "@typescript-eslint/parser" : " ^7.16 .0" ,
50
50
"ava" : " ^6.1.2" ,
51
51
"eslint" : " ^8.56.0" ,
52
52
"typescript" : " ^5.3.3"
53
53
},
54
54
"peerDependencies" : {
55
- "@typescript-eslint/eslint-plugin" : " >=7.11 .0" ,
56
- "@typescript-eslint/parser" : " >=7.11 .0" ,
55
+ "@typescript-eslint/eslint-plugin" : " >=7.16 .0" ,
56
+ "@typescript-eslint/parser" : " >=7.16 .0" ,
57
57
"eslint" : " >=8.56.0" ,
58
58
"typescript" : " >=5.0.0"
59
59
}
You can’t perform that action at this time.
0 commit comments