|
|
|
|
|
by gpderetta
783 days ago
|
|
I have the benefit of writing mostly C++ where there is really no globally agreed idiomatic naming. At $JOB we use snake_case naming for C++ functions and objects (as opposed to types), which also matches the python naming convention we use. Snake case is not idiomatic for xml, but we still happen to use it for leaf config options. The main benefit is reducing ambiguity to what maps to what across files. Ease of grepability is also an advantage. |
|