Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Debbl committed Jan 10, 2025
1 parent b98daa8 commit b555c03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/configs/markdown.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GLOB_MARKDOWN, GLOB_MARKDOWN_CODE } from "../globs";
import { combine, interopDefault, parserPlain } from "../utils";
import { interopDefault, parserPlain } from "../utils";
import type { ConfigFn, ConfigItem, OptionsOverrides } from "../types";

export type MarkdownConfig = (
Expand All @@ -14,7 +14,7 @@ export type MarkdownConfig = (

export const markdown: MarkdownConfig = async (options) => {
const {
mdx: enableMdx = false,
mdx: _enableMdx = false,
componentExts = [],
overrides = {},
} = options;
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ export interface OptionsConfig extends OptionsComponentExts {

/**
* Enable Tailwind CSS support.
*
*
* if set to "prettier", it will use `prettier-plugin-tailwindcss`
* @see https://github.com/tailwindlabs/prettier-plugin-tailwindcss
*
*
* @default false
*/
tailwindcss?: boolean | "prettier";
Expand Down

0 comments on commit b555c03

Please sign in to comment.