From 0f239fa55ad3dbd4772b64a10fe55feaed62283c Mon Sep 17 00:00:00 2001 From: anubra266 Date: Mon, 9 Sep 2024 18:34:50 -0500 Subject: [PATCH] chore: undo index --- plugin/src/rules/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin/src/rules/index.ts b/plugin/src/rules/index.ts index 28d4273..e19686c 100644 --- a/plugin/src/rules/index.ts +++ b/plugin/src/rules/index.ts @@ -1,7 +1,6 @@ import fileNotIncluded, { RULE_NAME as FileNotIncluded } from './file-not-included' import noConfigunctionInSource, { RULE_NAME as NoConfigunctionInSource } from './no-config-function-in-source' import noDebug, { RULE_NAME as NoDebug } from './no-debug' -import noDeprecatedTokens, { RULE_NAME as NoDeprecatedTokens } from './no-deprecated-tokens' import noDynamicStyling, { RULE_NAME as NoDynamicStyling } from './no-dynamic-styling' import noEscapeHatch, { RULE_NAME as NoEscapeHatch } from './no-escape-hatch' import noHardCodedColor, { RULE_NAME as NoHardCodedColor } from './no-hardcoded-color' @@ -22,7 +21,6 @@ export const rules = { [FileNotIncluded]: fileNotIncluded, [NoConfigunctionInSource]: noConfigunctionInSource, [NoDebug]: noDebug, - [NoDeprecatedTokens]: noDeprecatedTokens, [NoDynamicStyling]: noDynamicStyling, [NoEscapeHatch]: noEscapeHatch, [NoHardCodedColor]: noHardCodedColor,