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'