Relax pylint design checker rules also for python2.7

This commit is contained in:
Lee Miller 2025-01-21 02:50:26 +02:00
parent 00d9afb96b
commit bb5f96cc38
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63

View File

@ -20,6 +20,8 @@ ignore = E722,F841,W503
disable=invalid-name,bare-except,broad-except disable=invalid-name,bare-except,broad-except
# invalid-name: needs fixing during a large, project-wide refactor # invalid-name: needs fixing during a large, project-wide refactor
# bare-except,broad-except: Need fixing once thorough testing is easier # bare-except,broad-except: Need fixing once thorough testing is easier
max-args = 8
max-attributes = 8
[MASTER] [MASTER]
init-hook = import sys;sys.path.append('src') init-hook = import sys;sys.path.append('src')