Skip to content

Commit

Permalink
chore: Ignore 'line-too-long' rule in pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiz96 committed Oct 6, 2024
1 parent 2471e2c commit e04aa09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: find . -name '*.sh' -exec shellcheck --color=always {} +

- name: Run pylint
run: find . -name '*.py' -exec pylint -d E0611,E0401,C0103 --output-format=colorized {} +
run: find . -name '*.py' -exec pylint -d E0611,E0401,C0103,C0301 --output-format=colorized {} +

- name: Run make test
run: make test

0 comments on commit e04aa09

Please sign in to comment.