|
Last change
on this file was
2a4dcb7,
checked in by Itamar Turner-Trauring <itamar@…>, at 2023-04-17T17:08:26Z
|
|
More checks that are probably useful (doesn't trigger anything at the moment).
|
-
Property mode set to
100644
|
|
File size:
402 bytes
|
| Line | |
|---|
| 1 | select = [ |
|---|
| 2 | # Pyflakes checks |
|---|
| 3 | "F", |
|---|
| 4 | # Prohibit tabs: |
|---|
| 5 | "W191", |
|---|
| 6 | # No trailing whitespace: |
|---|
| 7 | "W291", |
|---|
| 8 | "W293", |
|---|
| 9 | # Make sure we bind closure variables in a loop (equivalent to pylint |
|---|
| 10 | # cell-var-from-loop): |
|---|
| 11 | "B023", |
|---|
| 12 | # Don't silence exceptions in finally by accident: |
|---|
| 13 | "B012", |
|---|
| 14 | # Don't use mutable default arguments: |
|---|
| 15 | "B006", |
|---|
| 16 | # Errors from PyLint: |
|---|
| 17 | "PLE", |
|---|
| 18 | ] |
|---|
Note: See
TracBrowser
for help on using the repository browser.