@@ -281,7 +281,6 @@ const create = context => {
281281 if ( dates . length > 1 ) {
282282 uses ++ ;
283283 context . report ( {
284- node : null ,
285284 loc : comment . loc ,
286285 messageId : MESSAGE_ID_AVOID_MULTIPLE_DATES ,
287286 data : {
@@ -296,7 +295,6 @@ const create = context => {
296295 const shouldIgnore = options . ignoreDatesOnPullRequests && ci . isPR ;
297296 if ( ! shouldIgnore && reachedDate ( date ) ) {
298297 context . report ( {
299- node : null ,
300298 loc : comment . loc ,
301299 messageId : MESSAGE_ID_EXPIRED_TODO ,
302300 data : {
@@ -310,7 +308,6 @@ const create = context => {
310308 if ( packageVersions . length > 1 ) {
311309 uses ++ ;
312310 context . report ( {
313- node : null ,
314311 loc : comment . loc ,
315312 messageId : MESSAGE_ID_AVOID_MULTIPLE_PACKAGE_VERSIONS ,
316313 data : {
@@ -330,7 +327,6 @@ const create = context => {
330327 const compare = semverComparisonForOperator ( condition ) ;
331328 if ( packageVersion && compare ( packageVersion , decidedPackageVersion ) ) {
332329 context . report ( {
333- node : null ,
334330 loc : comment . loc ,
335331 messageId : MESSAGE_ID_REACHED_PACKAGE_VERSION ,
336332 data : {
@@ -357,7 +353,6 @@ const create = context => {
357353
358354 if ( trigger ) {
359355 context . report ( {
360- node : null ,
361356 loc : comment . loc ,
362357 messageId,
363358 data : {
@@ -382,7 +377,6 @@ const create = context => {
382377
383378 if ( compare ( targetPackageVersion , todoVersion ) ) {
384379 context . report ( {
385- node : null ,
386380 loc : comment . loc ,
387381 messageId : MESSAGE_ID_VERSION_MATCHES ,
388382 data : {
@@ -414,7 +408,6 @@ const create = context => {
414408
415409 if ( compare ( targetPackageEngineVersion , todoEngine ) ) {
416410 context . report ( {
417- node : null ,
418411 loc : comment . loc ,
419412 messageId : MESSAGE_ID_ENGINE_MATCHES ,
420413 data : {
@@ -439,7 +432,6 @@ const create = context => {
439432 if ( parseArgument ( testString ) . type !== 'unknowns' ) {
440433 uses ++ ;
441434 context . report ( {
442- node : null ,
443435 loc : comment . loc ,
444436 messageId : MESSAGE_ID_MISSING_AT_SYMBOL ,
445437 data : {
@@ -457,7 +449,6 @@ const create = context => {
457449 if ( parseArgument ( withoutWhitespaces ) . type !== 'unknowns' ) {
458450 uses ++ ;
459451 context . report ( {
460- node : null ,
461452 loc : comment . loc ,
462453 messageId : MESSAGE_ID_REMOVE_WHITESPACES ,
463454 data : {
0 commit comments