mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 23:02:25 +00:00
12 lines
243 B
TOML
12 lines
243 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",
|
||
|
]
|