Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
noxify committed Jan 2, 2024
1 parent aad035d commit 245bf19
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 23 deletions.
1 change: 1 addition & 0 deletions apps/docs/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Importing env files here to validate on build
import "./src/env.mjs"

//import { withNextDevtools } from '@next-devtools/core/plugin'

/** @type {import("next").NextConfig} */
Expand Down
2 changes: 1 addition & 1 deletion packages/markdoc-tabs/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './Tabs';
export * from "./Tabs"
2 changes: 1 addition & 1 deletion packages/markdoc-tabs/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './config';
export * from "./config"
8 changes: 4 additions & 4 deletions packages/markdoc-typography/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './Blockquote';
export * from './Heading';
export * from './List';
export * from './Paragraph';
export * from "./Blockquote"
export * from "./Heading"
export * from "./List"
export * from "./Paragraph"
2 changes: 1 addition & 1 deletion packages/markdoc-typography/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './config';
export * from "./config"
8 changes: 4 additions & 4 deletions packages/ui/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './logo';
export * from './sidebar-navigation';
export * from './tailwind-indicator';
export * from './theme-toggle';
export * from "./logo"
export * from "./sidebar-navigation"
export * from "./tailwind-indicator"
export * from "./theme-toggle"
24 changes: 12 additions & 12 deletions packages/ui/src/components/ui/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export * from './accordion';
export * from './alert';
export * from './badge';
export * from './button';
export * from './command';
export * from './dialog';
export * from './dropdown-menu';
export * from './popover';
export * from './scroll-area';
export * from './sheet';
export * from './table';
export * from './tabs';
export * from "./accordion"
export * from "./alert"
export * from "./badge"
export * from "./button"
export * from "./command"
export * from "./dialog"
export * from "./dropdown-menu"
export * from "./popover"
export * from "./scroll-area"
export * from "./sheet"
export * from "./table"
export * from "./tabs"

0 comments on commit 245bf19

Please sign in to comment.