Skip to content

Commit

Permalink
added flake8 to python mother dough
Browse files Browse the repository at this point in the history
  • Loading branch information
marksibrahim authored Dec 13, 2017
1 parent 5690e67 commit 84a380a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions python-mother-dough/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ Good principles to keep in mind

### Automatic Style Checks
* [pycodestyle](https://github.com/PyCQA/pycodestyle): enforces PEP8, without being too picky.
* [pylint](https://www.pylint.org/): covers much more than PEP8, but is absurdly picky out-of-the-box (not always with good reason).
* [PyCodestyle](https://github.com/PyCQA/pycodestyle): enforces PEP8, without being too picky.
* [PyLint](https://www.pylint.org/): covers much more than PEP8, but is absurdly picky out-of-the-box (not always with good reason).

* [PyFlakes](https://pypi.python.org/pypi/pyflakes): checks correctness without complaining about style or importing the code.

Go with [Flake8](https://pypi.python.org/pypi/flake8), which runs both pycodestyle and pyflakes.

### Conventions
*How should I name directories and packages?*
Expand Down

0 comments on commit 84a380a

Please sign in to comment.