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,