1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 14:31:46 +00:00

pylint options

This commit is contained in:
deadc0de6
2024-10-09 11:12:40 +02:00
parent 5f41524c45
commit 2775512507

View File

@@ -81,6 +81,7 @@ echo "checking dotdrop with pylint"
# R0904: too-many-public-methods
# R0917: too-many-positional-arguments
pylint \
--disable=W0012 \
--disable=R0902 \
--disable=R0913 \
--disable=R0903 \
@@ -119,6 +120,7 @@ echo "checking other python scripts with pylint"
find . -name "*.py" -not -path "./dotdrop/*" -not -regex "\./\.?v?env/.*" | while read -r script; do
echo "checking ${script}"
pylint -sn \
--disable=W0012 \
--disable=R0914 \
--disable=R0915 \
--disable=R0913 \