From e0c838b23086aa4af4d4591cc6a6607f4055dbfd Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Fri, 16 Jul 2021 11:50:46 +0200 Subject: [PATCH] chore(tools): a less annoying pylint - allow 1 letter names - no minimum on class public methods --- pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index f55239850..07f7a7a29 100644 --- a/pylintrc +++ b/pylintrc @@ -275,7 +275,7 @@ good-names=i, # Good variable names regexes, separated by a comma. If names match any regex, # they will always be accepted -good-names-rgxs= +good-names-rgxs=^[a-z]$ # Include a hint for the correct naming format with invalid-name. include-naming-hint=no @@ -571,7 +571,7 @@ max-returns=6 max-statements=50 # Minimum number of public methods for a class (see R0903). -min-public-methods=2 +min-public-methods=0 [IMPORTS]