Reenable invalid-name checking

Add naming exemptions desired by devs
This commit is contained in:
Zedifus 2022-04-14 03:07:56 +01:00
parent 3e5c8c9205
commit c7f7b2539c

View File

@ -94,7 +94,6 @@ disable=C0330,
fixme, fixme,
import-error, import-error,
inconsistent-return-statements, inconsistent-return-statements,
invalid-name,
locally-disabled, locally-disabled,
logging-format-interpolation, logging-format-interpolation,
logging-fstring-interpolation, logging-fstring-interpolation,
@ -236,10 +235,20 @@ function-naming-style=snake_case
#function-rgx= #function-rgx=
# Good variable names which should always be accepted, separated by a comma. # Good variable names which should always be accepted, separated by a comma.
good-names=i, good-names=e,
ex,
f,
i,
id,
ip,
j, j,
k, k,
ex, p,
r,
rs,
s,
tz,
v,
Run, Run,
_ _