Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Burmak committed Jul 23, 2023
1 parent 43e7460 commit 096a699
Show file tree
Hide file tree
Showing 48 changed files with 857 additions and 551 deletions.
5 changes: 3 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[flake8]
; Disabling the checks that conflict with "black":
; Disabling the checks that overlap with "black" and "pylint" tools:
; E122 "continuation line missing indentation or outdented"
; E126 "continuation line over-indented for hanging indent"
; E131 "continuation line unaligned for hanging indent"
; E203 "whitespace before ':'"
; E402 "module level import not at top of file"
; E501 "line too long (129 > 120 characters)"
; W503 "line break before binary operator"
select = E,F,W,C,S
ignore = E122,E126,E131,E203,E501,W503
ignore = E122,E126,E131,E203,E402,E501,W503
2 changes: 2 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
run: make black
- name: "lint: flake8"
run: make flake8
- name: "lint: pylint"
run: make pylint
# Temporarily disabled due to bugs in typing in click library
# https://github.com/pallets/click/pull/2559
# https://github.com/python/mypy/issues/13250
Expand Down
Loading

0 comments on commit 096a699

Please sign in to comment.