Added Makefile
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
09502f6fc7
commit
7338667e7e
7 changed files with 440 additions and 11 deletions
22
.pylint.sh
Normal file
22
.pylint.sh
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
EXE=/var/local/bin/pydev_pylint.bash
|
||||
ROLE=logging
|
||||
|
||||
$EXE --recursive y --verbose --py-version 3.11 \
|
||||
--output-format colorized --rcfile .pylint.rc \
|
||||
-E -f text *py [a-nr-z]*/*py > .pylint.err
|
||||
retval=$?
|
||||
|
||||
$EXE --recursive y --verbose --py-version 3.11 \
|
||||
--output-format colorized --rcfile .pylint.rc \
|
||||
*py [a-nr-z]*/*py > .pylint.out
|
||||
|
||||
sed -e "/Module 'os' has no/d" \
|
||||
-e "/Undefined variable 'app'/d" \
|
||||
-e '/tests\//d' \
|
||||
-e "/Instance of 'Curl' has no /d" \
|
||||
-e "/No name 'path' in module 'os' /d" \
|
||||
-e "/ in module 'os'/d" \
|
||||
-e "/.bak\//d" \
|
||||
-i .pylint.err .pylint.out
|
Loading…
Add table
Add a link
Reference in a new issue