feat: 1995

This commit is contained in:
Dan Finch 2026-08-04 02:09:54 +02:00
commit fb89263930
69 changed files with 3359 additions and 0 deletions

30
oxfmt.config.ts Normal file
View file

@ -0,0 +1,30 @@
import { defineConfig } from "oxfmt"
export default defineConfig({
useTabs: false,
tabWidth: 2,
printWidth: 80,
singleQuote: false,
jsxSingleQuote: false,
quoteProps: "as-needed",
trailingComma: "all",
semi: false,
arrowParens: "always",
bracketSameLine: false,
bracketSpacing: true,
ignorePatterns: ["**/*.gen.ts"],
overrides: [
{
files: ["**/ui/**/*.ts"],
options: {
printWidth: 60,
},
},
{
files: ["**/*.tsx"],
options: {
printWidth: 70,
},
},
],
})