Skip to content

Commit cc45028

Browse files
authored
Relax and improve PyLint
1 parent 3247471 commit cc45028

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ jobs:
2121
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2222
- name: Analysing the code with pylint
2323
run: |
24-
cd src
25-
pylint `ls -R|grep .py$|xargs`
24+
pylint --output-format=colorized --disable=C0301,C0103 --fail-under=7.75 src

0 commit comments

Comments
 (0)