Skip to content

Commit

Permalink
Merge 469aa74 into 2fcc8b3
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Mar 6, 2016
2 parents 2fcc8b3 + 469aa74 commit 42420eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Change history
- Install isort script if flake8-isort is installed as well.
[gforcada]

- Add two new recommended flake8 plugins:
`flake8-commas <https://pypi.python.org/pypi/flake8-commas>`_ and
`flake8_strict <https://pypi.python.org/pypi/flake8_strict>`_.
[gforcada]


2.2 (2016-02-20)
----------------
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ These are the current extras installed:
- flake8-quotes: warns about using double quotes (plone style guide says single quotes)
- flake8-string-format: warns about errors on string formatting
- flake8-todo: warns if there are ``TODO``, ``XXX`` found on the code
- flake8-commas: warns if the last element on a method call, list or dictionary does not end with a comma
- flake8_strict: warns if a multi-line method call has its first element on the first line

Jenkins Installation
====================
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def read(*rnames):
'recommended': [
'flake8-blind-except',
'flake8-coding',
'flake8-commas',
'flake8-debugger',
'flake8-deprecated',
'flake8-isort',
Expand All @@ -80,6 +81,7 @@ def read(*rnames):
'flake8-quotes',
'flake8-string-format',
'flake8-todo',
'flake8_strict',
],
},
test_suite='plone.recipe.codeanalysis.tests.test_docs.test_suite',
Expand Down

0 comments on commit 42420eb

Please sign in to comment.