fix: disable reorderArrays in tamasfe.even-better-toml (#1837)

The existing setting kept destroying my `~/.codex/config.toml` for the
reasons mentioned in the comment.
This commit is contained in:
Michael Bolin
2025-08-04 21:57:55 -07:00
committed by GitHub
parent 906d449760
commit fcdb1c4b4d

View File

@@ -11,6 +11,8 @@
"editor.defaultFormatter": "tamasfe.even-better-toml",
"editor.formatOnSave": true,
},
"evenBetterToml.formatter.reorderArrays": true,
// Array order for options in ~/.codex/config.toml such as `notify` and the
// `args` for an MCP server is significant, so we disable reordering.
"evenBetterToml.formatter.reorderArrays": false,
"evenBetterToml.formatter.reorderKeys": true,
}