Difference between revisions of "Programming guidelines"
(→Pylint) |
Codefarmer (talk | contribs) (Clarify that pylint is not enforced by CI, while still encouraging its use. Remove parentheses for simplicity and emphasis.) |
||
| Line 8: | Line 8: | ||
=== Tabs === | === Tabs === | ||
| − | * Do not use TABs. Use space characters. In Gramps we use 4 spaces for indentation. This does not mean you must set your TAB stops to 4. TABs and indents are not the same thing. Most editors have a configuration option to set indentation and TAB stops. Be careful to just set the '''indentation''' to 4, which automatically means it has to be '''spaces'''. | + | * Do not use TABs. Use space characters. In Gramps we use 4 spaces for indentation. This does not mean you must set your TAB stops to 4. TABs and indents are not the same thing. Most editors have a configuration option to set indentation and TAB stops. Be careful to just set the '''indentation''' to 4, which automatically means it has to be '''spaces'''. TABs are still necessary, in Makefiles for example, and they '''have to''' be equivalent to 8 spaces, '''always'''. To summarize: |
** uses spaces, no TABs | ** uses spaces, no TABs | ||
** indentation is 4 | ** indentation is 4 | ||
| Line 53: | Line 53: | ||
== Docstrings == | == Docstrings == | ||
| − | * Python provides a docstrings to document classes and functions. If the class is a class used by others (such as the [http://www.gramps-project.org/docs/gen/gen_lib.html#module-gen.lib gen lib] classes), the docstrings should follow the restructuredtext ([http://docutils.sourceforge.net/docs/user/rst/quickstart.html#structure rst]) format. This allows us to extract [http://www.gramps-project.org/docs/ API] documentation [[Devhelp#See_also|using Sphinx]] | + | * Python provides a docstrings to document classes and functions. If the class is a class used by others (such as the [http://www.gramps-project.org/docs/gen/gen_lib.html#module-gen.lib gen lib] classes), the docstrings should follow the restructuredtext ([http://docutils.sourceforge.net/docs/user/rst/quickstart.html#structure rst]) format. This allows us to extract [http://www.gramps-project.org/docs/ API] documentation [[Devhelp#See_also|using Sphinx]], a documentation generator for Python code. |
* Aside from adding doc strings to classes and functions, also the api generating rst files must be edited so as to extract the documentation. These files are in the [https://github.com/gramps-project/gramps/tree/master/docs docs directory], for info read the [https://github.com/gramps-project/gramps/blob/master/docs/README.txt /docs/README.txt] file. | * Aside from adding doc strings to classes and functions, also the api generating rst files must be edited so as to extract the documentation. These files are in the [https://github.com/gramps-project/gramps/tree/master/docs docs directory], for info read the [https://github.com/gramps-project/gramps/blob/master/docs/README.txt /docs/README.txt] file. | ||
| Line 80: | Line 80: | ||
== Pylint == | == Pylint == | ||
* Run <code>pylint</code> on your code before checking in. | * Run <code>pylint</code> on your code before checking in. | ||
| − | * New files shall have a Pylint score of 9 or higher | + | * New files shall have a Pylint score of 9 or higher, but not enforced by CI tools as Black formatting is. |
* Any changes to existing files with a Pylint score lower than 9 shall not reduce the Pylint score. It is expected that over time, this policy will cause all files to eventually have a score of 9 or higher. | * Any changes to existing files with a Pylint score lower than 9 shall not reduce the Pylint score. It is expected that over time, this policy will cause all files to eventually have a score of 9 or higher. | ||
Note that you must run <code>pylint</code> in the <code>gramps</code> directory. If import errors still occur, add a PYTHONPATH. Example usage: | Note that you must run <code>pylint</code> in the <code>gramps</code> directory. If import errors still occur, add a PYTHONPATH. Example usage: | ||
| − | me@laptop:~/programs/master/src$ PYTHONPATH=plugins/lib/ pylint | + | me@laptop:~/programs/master/src$ PYTHONPATH=plugins/lib/ pylint --reports=y plugins/mapservices/googlemap.py |
Set reports to '''n''' to have less output. Information on the meaning of codes can be found here: | Set reports to '''n''' to have less output. Information on the meaning of codes can be found here: | ||
* [http://pylint-messages.wikidot.com/all-codes All codes, PyLint 1.1.0] Messages: and what they're trying to tell you | * [http://pylint-messages.wikidot.com/all-codes All codes, PyLint 1.1.0] Messages: and what they're trying to tell you | ||
| Line 90: | Line 90: | ||
== Best practices == | == Best practices == | ||
| + | * Maintain good code hygiene by following coding guidelines and running code analysis and formatting tools locally | ||
| + | |||
* Always develop with [[Coding_for_translation|language translation]] in mind | * Always develop with [[Coding_for_translation|language translation]] in mind | ||
Revision as of 03:57, 7 November 2024
In a multi-programmer environment, it is important to follow common coding guidelines to make sure the code remains maintainable.
Contents
Coding style
PEP8
- Write PEP 8 compatible code! This is important to have a consistent, readable codebase.
- it is not explicit in PEP8, but we like a space after a comma
Tabs
- Do not use TABs. Use space characters. In Gramps we use 4 spaces for indentation. This does not mean you must set your TAB stops to 4. TABs and indents are not the same thing. Most editors have a configuration option to set indentation and TAB stops. Be careful to just set the indentation to 4, which automatically means it has to be spaces. TABs are still necessary, in Makefiles for example, and they have to be equivalent to 8 spaces, always. To summarize:
- uses spaces, no TABs
- indentation is 4
- TAB stops (if any) are at position 9,17,25,... (first column is 1)
Members names
- Private class functions (functions that cannot be called outside the class) should be preceded with two underscores.
- Protected functions (functions that can only be called by the class or derived classes) should be preceded with one underscore.
def __private_function(self):
pass
def _protected_function(self):
pass
Callbacks
Names of callbacks should be prefixed by 'cb_'. For example, cb_my_callback.
pylint does not check that arguments are used when methods are named in this way. This is useful to avoid the pylint warning: 'W0613: Unused argument <arg>'.
Imports
The top module is called gramps, and it has following submodules:
- gen
- cli
- gui
- plugins
The other dirs should not contain code, or are for testing.
Within a submodule, only relative imports are allowed of the own submodule (so starting with . or with a module of the own directory), and absolute imports of other submodules (so starting with gramps.)
Important: files in the gen submodule are not allowed to import files from the other submodules. So |
Class headers
- Each class should have a simple header to help mark it in the file. This is not used for documentation - it is used to help find the class when multiple classes exist in the same file.
#------------------------------------------------------------ # # MyClass # #------------------------------------------------------------
Docstrings
- Python provides a docstrings to document classes and functions. If the class is a class used by others (such as the gen lib classes), the docstrings should follow the restructuredtext (rst) format. This allows us to extract API documentation using Sphinx, a documentation generator for Python code.
- Aside from adding doc strings to classes and functions, also the api generating rst files must be edited so as to extract the documentation. These files are in the docs directory, for info read the /docs/README.txt file.
- More info
Classes that are not core reusable classes do not have to follow this format (although we encourage you do), but should be documented using docstrings.
class MyClass:
"""
MyClass is a sample class.
"""
def my_function(self):
"""
The my_function task serves no purpose whatsoever.
"""
pass
Black
Gramps CI checks for code formatting compliance using Black. When a PR fails the check, code which requires changes is shown in the Checks tab in the Lint panel. You may update the code manually to make it pass, or integrate Black formatter with your preferred editor to ensure that the check will pass. When using Black locally, use the same version as the CI system to ensure formatting consistency.
Pylint
- Run
pylinton your code before checking in. - New files shall have a Pylint score of 9 or higher, but not enforced by CI tools as Black formatting is.
- Any changes to existing files with a Pylint score lower than 9 shall not reduce the Pylint score. It is expected that over time, this policy will cause all files to eventually have a score of 9 or higher.
Note that you must run pylint in the gramps directory. If import errors still occur, add a PYTHONPATH. Example usage:
me@laptop:~/programs/master/src$ PYTHONPATH=plugins/lib/ pylint --reports=y plugins/mapservices/googlemap.py
Set reports to n to have less output. Information on the meaning of codes can be found here:
- All codes, PyLint 1.1.0 Messages: and what they're trying to tell you
- Pylint current stable documentation - now generally has a bit more detail that the older version
Best practices
- Maintain good code hygiene by following coding guidelines and running code analysis and formatting tools locally
- Always develop with language translation in mind
- Reduce dependencies (imports) between files.
- Think on Accessibility.