CODINGSTYLE.md: don't require local variables to be prefixed with an underscore

It was probably already meant like that so mention this explicitly
This commit is contained in:
Sertonix 2025-07-24 14:48:06 +00:00 committed by Patrycja Rosa
parent f694bff84f
commit d7f5684261

View File

@ -94,7 +94,7 @@ Put `; do` and `; then` on the same line as the `while`, `for` or `if`.
### Variable Names ### Variable Names
* Lower-case, with underscores to separate words. Prefix all * Lower-case, with underscores to separate words. Prefix all
non-metadata variables with an underscore character. non-metadata non-local variables with an underscore character.
### Use Local Variables ### Use Local Variables