summary refs log tree commit diff stats
path: root/HACKING.md
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-01-22 00:04:34 +0100
committernfnty <git@nfnty.se>2017-01-22 00:04:34 +0100
commitf33891d8ab2b9b61d7435d4c57b7b44e395e94f3 (patch)
tree03368eefce609070f802958c25b47486fe7d0f0f /HACKING.md
parent6e3ae27e358ae5f6c7965b081293f77788cca031 (diff)
downloadranger-f33891d8ab2b9b61d7435d4c57b7b44e395e94f3.tar.gz
Update CONTRIBUTING and HACKING with new instructions
Diffstat (limited to 'HACKING.md')
-rw-r--r--HACKING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/HACKING.md b/HACKING.md
index 68055555..b8f62d86 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -4,10 +4,10 @@ Guidelines for Code Modification
 Coding Style
 ------------
 
-* Use syntax compatible to both Python 2.6+ and 3.1+.
+* Use syntax compatible with Python `2.6+` and `3.1+`.
 * Use docstrings with `pydoc` in mind
-* Follow the style guide for python code: https://www.python.org/dev/peps/pep-0008/
-* Test the code with `doctest` where it makes sense
+* Follow the PEP8 style guide: https://www.python.org/dev/peps/pep-0008/
+* Always run `make test` before submitting a new PR. `pylint` and `flake8` needs to be installed.
 * When breaking backward compatibility with old configuration files or plugins,
   please include a temporary workaround code that provides a compatibility
   layer and mark it with a comment that includes the word `COMPAT`.  For