Files
sta/oxfmt.config.ts

18 lines
434 B
TypeScript
Raw Normal View History

import { defineConfig } from 'oxfmt';
export default defineConfig({
2026-05-14 23:00:52 +02:00
ignorePatterns: ['.direnv/**/*', '.gitea/**/*', 'backend/**/*', '**/*.toml', '**/*.md', '.sqlx/**/*'],
printWidth: 120,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'es5',
sortTailwindcss: true,
sortPackageJson: true,
allowParens: 'always',
jsdoc: true,
sortImports: true,
vueIndentScriptAndStyle: false,
});