Skip to content

Commit

Permalink
feat: more flake8 plugins :)
Browse files Browse the repository at this point in the history
  • Loading branch information
escaped committed Jan 11, 2021
1 parent b117d2e commit 8f15d59
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* added CONTRIBUTORS.md
* added pull request template
* added auto sync project struture
* added [flake8-bugbear](https://pypi.org/project/flake8-bugbear/)
* added [autoflake8](https://pypi.org/project/autoflake/)
* added [flake8-bugbear](https://pypi.org/project/flake8-bugbear/)
* added [flake8-builtins](https://pypi.org/project/flake8-builtins/)
* added [flake8-comprehensions](https://pypi.org/project/flake8-comprehensions/)
* added [flake8-debugger](https://pypi.org/project/flake8-debugger/)
* added [pep8-naming](https://pypi.org/project/pep8-naming/)
* added support for python 3.9

### Changed
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A Modern [Cookiecutter] template for Python packages and applications using [Poe

* [pre-commit] hook to run

* [flake8], [flake8-bugbear],
* [flake8], [flake8-bugbear], [flake8-builtins], [flake8-debugger], [pep8-naming], [flake8-comprehensions]
* [autoflake] (removes unused imports and variables),
* [isort],
* [mypy] and
Expand Down Expand Up @@ -84,8 +84,12 @@ While creating the access token, the following permissions have to be granted
[django-environ]: https://github.com/joke2k/django-environ
[flake8]: http://flake8.pycqa.org/en/latest/
[flake8-bugbear]: https://pypi.org/project/flake8-bugbear/
[flake8-builtins]: https://pypi.org/project/flake8-builtins/
[flake8-comprehensions]: https://pypi.org/project/flake8-comprehensions/
[flake8-debugger: https://pypi.org/project/flake8-debugger/
[isort]: https://github.com/timothycrosley/isort
[mypy]: http://mypy-lang.org/
[pep8-naming]: https://pypi.org/project/pep8-naming/
[pip]: https://pip.pypa.io/en/stable/
[pipx]: https://github.com/pipxproject/pipx
[pre-commit]: https://pre-commit.com/
Expand Down
4 changes: 4 additions & 0 deletions {{ cookiecutter.project_slug }}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@ autoflake = "^1.4"
black = "^20.8b1"
flake8 = "^3.8.3"
flake8-bugbear = "^20.11.1"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.3.1"
flake8-debugger = "^4.0.0"
isort = "^5.5.2"
mypy = "^0.782"
pep8-naming = "^0.11.1"
pre-commit = "^2.7.1"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
Expand Down

0 comments on commit 8f15d59

Please sign in to comment.