-
-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathoxfmt.config.ts
More file actions
24 lines (22 loc) · 788 Bytes
/
Copy pathoxfmt.config.ts
File metadata and controls
24 lines (22 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { defineConfig } from "oxfmt";
import base from "./packages/cli/config/oxfmt/index.mjs";
export default defineConfig({
...base,
ignorePatterns: [
"packages/design-system/components/ui",
"packages/design-system/components/kibo-ui",
"packages/design-system/lib/utils.ts",
"packages/design-system/hooks/use-mobile.ts",
"packages/cli/config/biome",
"benchmark/fixtures",
"benchmark/.work",
"**/CHANGELOG.md",
"packages/video/src/components",
"packages/video/src/lib/utils.ts",
"packages/video/src/lib/remocn-ui",
"packages/video/.agents/skills",
// Generated bundle of the vendored anti-slop oxlint plugin — see
// packages/cli/scripts/vendor-anti-slop.ts.
"packages/cli/config/oxlint/anti-slop/plugin.mjs",
],
});