From feb474b945b0e1b92a03c43fad723028c50433d5 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:03:41 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/rulesCheck.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rulesCheck.ts b/src/rulesCheck.ts index 4064d427..3824b59f 100644 --- a/src/rulesCheck.ts +++ b/src/rulesCheck.ts @@ -1,7 +1,7 @@ import type { SFCDescriptor } from '@vue/compiler-sfc' import type { OverrideConfig } from './types/Override' -import { getIsNuxt } from './context' import { overrideConfig } from './cli' +import { getIsNuxt } from './context' import { checkApiWithoutMethod, checkBigVif, checkBigVshow, checkComplicatedConditions, checkComputedSideEffects, checkCyclomaticComplexity, checkDeepIndentation, checkElseCondition, checkFunctionSize, checkHtmlImageElements, checkHtmlLink, checkIfWithoutCurlyBraces, checkMagicNumbers, checkNestedTernary, checkNoInlineStyles, checkNoPropDestructure, checkNoVarDeclaration, checkParameterCount, checkPlainScript, checkPropsDrilling, checkScriptLength, checkShortVariableName, checkTooManyProps, checkVForWithIndexKey, checkZeroLengthComparison } from './rules/rrd' import { RULES } from './rules/rules' import { checkElementSelectorsWithScoped, checkImplicitParentChildCommunication } from './rules/vue-caution'