[.github] disable too many lines check

- we are aware of that some modules are too long but bothering us every time is not very helpful. However, the preset 1000 lines is a relatively small number. (Personally I prefer for better overview more in a single file since then search & replace, comparing code etc. is easier than having 10 files with each 100 lines opened.)
This commit is contained in:
Uwe
2022-08-14 20:40:12 +02:00
parent 43b6c65311
commit b177a8d6b2

View File

@@ -40,9 +40,9 @@ env:
cpplintFailSilent: true
checkPylint: true
pylintDisable: # additional disables to the .pylintrc file
# additional disables to the .pylintrc file
# for the Message codes see: https://pylint.pycqa.org/en/latest/user_guide/messages/index.html
pylintFailSilent: true
pylintDisable: disable=C0302 # too-many-lines
checkBlack: true
blackFailSilent: true