Skip to content

Commit

Permalink
Disable duplicate-code check, seem note controllable: pylint-dev/pyli…
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon committed Oct 21, 2024
1 parent 5fe9673 commit 1be9261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
pydocstyle *.py ocfl tests
- name: Lint with pylint
run: |
pylint --disable=line-too-long,raise-missing-from,fixme,redefined-builtin,invalid-name,consider-using-f-string,too-many-instance-attributes,too-many-return-statements,too-many-branches,too-many-arguments,too-many-locals,too-many-statements,too-many-nested-blocks,broad-exception-raised,superfluous-parens *.py ocfl
pylint --disable=line-too-long,raise-missing-from,fixme,redefined-builtin,invalid-name,consider-using-f-string,too-many-instance-attributes,too-many-return-statements,too-many-branches,too-many-arguments,too-many-locals,too-many-statements,too-many-nested-blocks,broad-exception-raised,superfluous-parens,duplicate-code *.py ocfl
pylint --disable=line-too-long,fixme,invalid-name,consider-using-f-string,too-many-statements,duplicate-code tests
- name: Test with pytest
run: |
Expand Down

0 comments on commit 1be9261

Please sign in to comment.