This commit is contained in:
phaichayon
2026-06-11 12:46:57 +07:00
parent 1993d88306
commit 7a390cf0df
720 changed files with 100919 additions and 0 deletions

30
.oxfmtrc.json Normal file
View File

@@ -0,0 +1,30 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"arrowParens": "always",
"bracketSpacing": true,
"semi": true,
"useTabs": false,
"trailingComma": "none",
"jsxSingleQuote": true,
"singleQuote": true,
"tabWidth": 2,
"endOfLine": "lf",
"experimentalSortTailwindcss": true,
"ignorePatterns": [
".next/**",
"out/**",
"build/**",
"node_modules/**",
"scripts/**",
"pnpm-lock.yaml",
"CHANGELOG.md"
],
"overrides": [
{
"files": ["*.md", "*.mdc"],
"options": {
"proseWrap": "preserve"
}
}
]
}