From a63b6c9496d7fdde21e13635649ef9d1d696f211 Mon Sep 17 00:00:00 2001 From: Verite Mugabo Date: Wed, 27 Nov 2024 09:23:05 -0500 Subject: [PATCH] fix: dependancy import --- src/rules/valid-expect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/valid-expect.ts b/src/rules/valid-expect.ts index 5e8469b..1931b89 100644 --- a/src/rules/valid-expect.ts +++ b/src/rules/valid-expect.ts @@ -2,7 +2,7 @@ import { AST_NODE_TYPES, TSESLint, TSESTree } from '@typescript-eslint/utils' import { createEslintRule, FunctionExpression, getAccessorValue, isFunction, isSupportedAccessor } from '../utils' import { parseVitestFnCallWithReason } from '../utils/parse-vitest-fn-call' import { ModifierName } from '../utils/types' -import { parsePluginSettings } from 'src/utils/parse-plugin-settings' +import { parsePluginSettings } from '../utils/parse-plugin-settings' export const RULE_NAME = 'valid-expect' export type MESSAGE_IDS =