Skip to content

Commit e1f95fc

Browse files
committed
refactor: backport to 3.8
1 parent d5d26a9 commit e1f95fc

File tree

6 files changed

+98
-129
lines changed

6 files changed

+98
-129
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ select = C,E,F,W,B,B9
88
# E203: whitespace before ':' (black behaviour)
99
# E501: flake8 line length (covered by bugbear B950)
1010
# W503: line break before binary operator (black behaviour)
11-
ignore = B905,E203,E501,W503
11+
ignore = B905,B907,E203,E501,W503
1212
classmethod-decorators =
1313
classmethod
1414
validator

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ recursive = true
107107
suggestion-mode = true
108108

109109
[tool.pylint.basic]
110-
good-names = ["id", "x", "xy", "y", "_", "__"]
110+
good-names = ["id", "kv", "op", "x", "xy", "y", "_", "__"]
111111

112112
[tool.pylint.design]
113113
max-args = 7

0 commit comments

Comments
 (0)