probe-rs / vscode

VSCode debug extension for probe-rs. It uses the MS DAP protocol to communicate directly with the probe (via probe-rs), and supports basic command line debugging in addition to VSCode UI.
https://probe.rs/
Other
65 stars 6 forks source link

Consistent config key style #17

Closed dbrgn closed 2 years ago

dbrgn commented 2 years ago

Right now the launch config contains a mix of under_score and camelCase:

image

This should be consistent. From looking at https://code.visualstudio.com/docs/cpp/launch-json-reference, camelCase seems to be the convention.

The sooner this is corrected, the better (in order to avoid breaking configs later on) 🙂

Yatekii commented 2 years ago

I agree that we should change this. I think this can easily be done with serde by telling it to camelCase :)