Skip to content

Commit

Permalink
fixing failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bsokol-wl committed May 6, 2024
1 parent 8464507 commit b6a5e1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/lib/config/mdx.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Linter } from "eslint";
import mdxPlugin from "eslint-plugin-mdx";
import * as mdxPlugin from "eslint-plugin-mdx";
import { mdxFiles } from "../utils/patterns.ts";

const config: Linter.FlatConfig[] = [
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/lib/config/storybook.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// https://github.com/storybookjs/eslint-plugin-storybook/blob/main/lib/configs/recommended.ts

import type { Linter } from "eslint";
import storybookPlugin from "eslint-plugin-storybook";
import * as storybookPlugin from "eslint-plugin-storybook";
import { mainStorybookFiles, storybookFiles } from "../utils/patterns.ts";

const config: Linter.FlatConfig[] = [
Expand Down

0 comments on commit b6a5e1d

Please sign in to comment.