@@ -78,7 +78,7 @@ export class QuickFixCodeActionsBuilder {
78
78
}
79
79
80
80
const ignoreAction : CodeAction = {
81
- title : `Add Ignore Rule ${ diagnostic . code } : Same Line` ,
81
+ title : `Ignore Rule ${ diagnostic . code } : Same Line` ,
82
82
kind : CodeActionKind . QuickFix ,
83
83
diagnostics : [ diagnostic ] ,
84
84
edit : {
@@ -138,7 +138,7 @@ export class QuickFixCodeActionsBuilder {
138
138
}
139
139
140
140
const ignoreAction : CodeAction = {
141
- title : `Add Ignore Rule ${ diagnostic . code } : Next Line` ,
141
+ title : `Ignore Rule ${ diagnostic . code } : Line Above ` ,
142
142
kind : CodeActionKind . QuickFix ,
143
143
diagnostics : [ diagnostic ] ,
144
144
edit : {
@@ -159,7 +159,7 @@ export class QuickFixCodeActionsBuilder {
159
159
const line = shebang === '#!' ? 1 : 0 ;
160
160
161
161
const ignoreFileAction = {
162
- title : `Add Ignore Rule ${ diagnostic . code } : Entire File` ,
162
+ title : `Ignore Rule ${ diagnostic . code } : Entire File` ,
163
163
kind : CodeActionKind . QuickFix ,
164
164
diagnostics : [ diagnostic ] ,
165
165
edit : {
0 commit comments