File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ module.exports = class DisabledArea {
61
61
kind,
62
62
start : location ,
63
63
end : null ,
64
- reported : false ,
65
64
} )
66
65
}
67
66
} else {
@@ -75,7 +74,6 @@ module.exports = class DisabledArea {
75
74
kind,
76
75
start : location ,
77
76
end : null ,
78
- reported : false ,
79
77
} )
80
78
}
81
79
}
@@ -206,18 +204,4 @@ module.exports = class DisabledArea {
206
204
}
207
205
}
208
206
}
209
-
210
- /**
211
- * Mark the area of the given ruleId and location as reported.
212
- *
213
- * @param {string } ruleId - The ruleId name to mark.
214
- * @param {object } location - The location to mark.
215
- * @returns {void }
216
- */
217
- report ( ruleId , location ) {
218
- const area = this . _getArea ( ruleId , location )
219
- if ( area != null ) {
220
- area . reported = true
221
- }
222
- }
223
207
}
You can’t perform that action at this time.
0 commit comments