2023-04-17 14:21:20 +00:00
|
|
|
select = [
|
|
|
|
# Pyflakes checks
|
|
|
|
"F",
|
|
|
|
# Prohibit tabs:
|
|
|
|
"W191",
|
|
|
|
# No trailing whitespace:
|
|
|
|
"W291",
|
|
|
|
"W293",
|
|
|
|
# Make sure we bind closure variables in a loop (equivalent to pylint
|
|
|
|
# cell-var-from-loop):
|
|
|
|
"B023",
|
2023-04-17 17:08:26 +00:00
|
|
|
# Don't silence exceptions in finally by accident:
|
|
|
|
"B012",
|
2023-04-17 16:02:04 +00:00
|
|
|
# Don't use mutable default arguments:
|
|
|
|
"B006",
|
2023-04-17 17:08:26 +00:00
|
|
|
# Errors from PyLint:
|
|
|
|
"PLE",
|
2023-04-17 14:21:20 +00:00
|
|
|
]
|