chg: [doc] Fix python naming swap (based on example and practice) and stray whitespace.

pull/9229/head
Anders Einar Hilden 2023-08-02 18:22:44 +02:00
parent 0e435d11e0
commit 3ccd0fcd4c
1 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ Maintaining proper coding style is very important for any large software project
## File naming conventions
- Never use spaces within file names
- **PHP:** Write file names in title case ,e.g. `AttachmentTool.php`
- **Python:** Write file names with small letters, use a dash to separate words, rather than underscores, e.g. `load_warninglists.py`
- **Python:** Write file names with small letters, use an underscore to separate words, rather than dashes, e.g. `load_warninglists.py`
- **JavaScript:** Write file names with small letters, use dashes to separate words, rather than underscores, e.g. `bootstrap-colorpicker.js`
## General programming style guidelines