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