fix: match root json files in oxfmt overrides
parent
e3e869faee
commit
f1143e134e
|
|
@ -11,7 +11,16 @@ const oxfmtConfig = defineOxfmtConfig({
|
|||
trailingComma: 'all',
|
||||
overrides: [
|
||||
{
|
||||
files: ['**/*.json', '**/*.json5', '**/*.jsonc', '*.code-workspace'],
|
||||
files: [
|
||||
'*.json',
|
||||
'*.json5',
|
||||
'*.jsonc',
|
||||
'*.code-workspace',
|
||||
'**/*.json',
|
||||
'**/*.json5',
|
||||
'**/*.jsonc',
|
||||
'**/*.code-workspace',
|
||||
],
|
||||
options: {
|
||||
trailingComma: 'none',
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue