Skip to content

Commit

Permalink
flake8-ignore some things that are black's problem
Browse files Browse the repository at this point in the history
I'm also skipping black formatting in a few areas, including readerless mode code, which has different rules.
  • Loading branch information
gilch committed Oct 3, 2024
1 parent d640aaf commit 0d166c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
flake8 . --extend-ignore=E231,E203,E701,E272 --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install Node.js
uses: actions/setup-node@v1
- name: Lint with parlinter

0 comments on commit 0d166c4

Please sign in to comment.