feat: welcome to sigitex.com
This commit is contained in:
commit
46f341745c
27 changed files with 1341 additions and 0 deletions
30
oxfmt.config.ts
Normal file
30
oxfmt.config.ts
Normal 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: [
|
||||
"*.page.ts",
|
||||
"*.style.ts",
|
||||
"*.html.ts",
|
||||
"layout.ts",
|
||||
"*.layout.ts",
|
||||
],
|
||||
options: {
|
||||
printWidth: 60,
|
||||
},
|
||||
},
|
||||
],
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue