Skip to content
Update Rules authored by Christoph Deneke's avatar Christoph Deneke
......@@ -2,7 +2,7 @@
Here some general thoughts on coding rules:
- Follow PEP8, if possible. Also read PEP20 and follow it by idea and spirit.
- Follow [PEP8](https://www.python.org/dev/peps/pep-0008/), if possible. Also read [PEP20](https://www.python.org/dev/peps/pep-0020/) and follow it by idea and spirit.
- Use variable names that are self-explaining and consisted. Some database scheme names are currently not following this and should be renames (lot of work)
- Read books like "Python Tricks" or "Fluent Python" and follow the suggestions. One is that we want to use with-statements with all database actions (see issue tracker).
- Code should be formatted by "black" with 105 character per line.
......
......