From b177a8d6b244c682cd3d9a65045b3cfabd601b0c Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 14 Aug 2022 20:40:12 +0200 Subject: [PATCH] [.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.) --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c1b339d922..8c03475ed9 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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