feat(regime)
This commit is contained in:
commit
655175f273
36 changed files with 1066 additions and 0 deletions
16
templates/tools-oxc/oxfmt.config.ts
Normal file
16
templates/tools-oxc/oxfmt.config.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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"],
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue