Skip to content

Commit 460c8b3

Browse files
authored
Merge pull request #19 from viperior/feature/enforce-flake8-rules
Enforce Flake8 Rules
2 parents f176e21 + 5164723 commit 460c8b3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# stop the build if there are Python syntax errors or undefined names
2727
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
2828
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
29-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
29+
flake8 . --count --max-complexity=10 --max-line-length=100 --statistics
3030
- name: Test with pytest (quick)
3131
run: |
3232
pytest -v -x -n auto

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/viperior/python-project-template/tree/v0.6.0) (2022-02-25)
4+
5+
### Improvements
6+
7+
* Enforce Flake8 Rules (closes [#11][i11])
8+
* Modify max code line length to 100 characters in `flake8` command
9+
10+
[i11]: https://github.com/viperior/python-project-template/issues/11
11+
312
## [0.5.0](https://github.com/viperior/python-project-template/tree/v0.5.0) (2022-02-25)
413

514
### Improvements

0 commit comments

Comments
 (0)