1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| import { defineConfig as defineOxfmtConfig } from 'oxfmt';
|
| type OxfmtConfig = Parameters<typeof defineOxfmtConfig>[0];
|
| const oxfmtConfig: OxfmtConfig = defineOxfmtConfig({
| printWidth: 80,
| proseWrap: 'never',
| semi: true,
| singleQuote: true,
| sortPackageJson: false,
| trailingComma: 'all',
| overrides: [
| {
| files: [
| '*.json',
| '*.json5',
| '*.jsonc',
| '*.code-workspace',
| '**/*.json',
| '**/*.json5',
| '**/*.jsonc',
| '**/*.code-workspace',
| ],
| options: {
| trailingComma: 'none',
| },
| },
| ],
| });
|
| function defineConfig(config: OxfmtConfig = {}): OxfmtConfig {
| return defineOxfmtConfig({
| ...oxfmtConfig,
| ...config,
| });
| }
|
| export { defineConfig, oxfmtConfig };
| export type { OxfmtConfig };
|
|