mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
19 lines
536 B
JSON
19 lines
536 B
JSON
{
|
|
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf",
|
|
"sortImports": {
|
|
"groups": ["builtin", "external", "internal", ["parent", "sibling", "index"], "unknown"],
|
|
"newlinesBetween": true,
|
|
"order": "asc"
|
|
},
|
|
"sortPackageJson": true,
|
|
"ignorePatterns": ["dist/", "coverage/", "pnpm-lock.yaml", "*.generated.ts"]
|
|
}
|