Skip to content

Commit

Permalink
ci: update flake8 config
Browse files Browse the repository at this point in the history
  • Loading branch information
vile committed Apr 14, 2024
1 parent d049f4a commit eebe3ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore = E501
ignore = E501,W503
exclude = .git,__pycache__
max-complexity = 18
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install flake8

- name: Run flake8
run: flake8 --extend-ignore E501 --verbose .
run: flake8 --extend-ignore E501,W503 --verbose .

0 comments on commit eebe3ad

Please sign in to comment.