From 2ec6bb82fe82b225dbc49f2c5d9a26a1c7259d58 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Wed, 10 Aug 2022 11:24:56 -0400 Subject: [PATCH] add bug links for eslint-plugin/no-unused-message-ids rule --- packages/eslint-plugin/src/rules/naming-convention.ts | 2 +- packages/eslint-plugin/src/rules/no-unsafe-call.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/eslint-plugin/src/rules/naming-convention.ts b/packages/eslint-plugin/src/rules/naming-convention.ts index daede175aaa..9738922e6e9 100644 --- a/packages/eslint-plugin/src/rules/naming-convention.ts +++ b/packages/eslint-plugin/src/rules/naming-convention.ts @@ -1,5 +1,5 @@ /* eslint-disable eslint-comments/no-use */ -/* eslint eslint-plugin/no-unused-message-ids:"off" -- rule has false positives due to our usage of an external helper function */ +/* eslint eslint-plugin/no-unused-message-ids:"off" -- https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/283 */ /* eslint-enable eslint-comments/no-use */ import { AST_NODE_TYPES, TSESLint, TSESTree } from '@typescript-eslint/utils'; diff --git a/packages/eslint-plugin/src/rules/no-unsafe-call.ts b/packages/eslint-plugin/src/rules/no-unsafe-call.ts index c0333c8be5c..dd209b27675 100644 --- a/packages/eslint-plugin/src/rules/no-unsafe-call.ts +++ b/packages/eslint-plugin/src/rules/no-unsafe-call.ts @@ -1,5 +1,5 @@ /* eslint-disable eslint-comments/no-use */ -/* eslint eslint-plugin/no-unused-message-ids:"off" -- disabled because the rule doesn't understand our helper function checkCall() */ +/* eslint eslint-plugin/no-unused-message-ids:"off" -- https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/282 */ /* eslint-enable eslint-comments/no-use */ import { TSESTree } from '@typescript-eslint/utils';