mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-18 20:47:54 +00:00
18 lines
402 B
TOML
18 lines
402 B
TOML
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",
|
|
# Don't silence exceptions in finally by accident:
|
|
"B012",
|
|
# Don't use mutable default arguments:
|
|
"B006",
|
|
# Errors from PyLint:
|
|
"PLE",
|
|
] |