This commit is contained in:
Devaev Maxim
2020-03-20 03:07:27 +03:00
parent ab6264bd5e
commit d5ae32b132
70 changed files with 28455 additions and 102 deletions

View File

@@ -43,6 +43,9 @@ max-line-length = 160
# List of builtins function names that should not be used, separated by a comma
bad-functions =
# Good variable names which should always be accepted, separated by a comma
good-names = _, __, x, y
# Regular expression matching correct method names
method-rgx = [a-z_][a-z0-9_]{2,50}$