Files
sta/oxfmt.config.ts

25 lines
463 B
TypeScript
Raw Normal View History

import { defineConfig } from 'oxfmt';
export default defineConfig({
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,
});