|
| 1 | +fix = true |
| 2 | +select = [ |
| 3 | + "F811", # Redefinition of unused variable (useful for finding test methods with the same name) |
| 4 | +] |
| 5 | +extend-exclude = [ |
| 6 | + # Failed to lint |
| 7 | + "badsyntax_pep3120.py", |
| 8 | + "encoded_modules/module_iso_8859_1.py", |
| 9 | + "encoded_modules/module_koi8_r.py", |
| 10 | + # Failed to parse |
| 11 | + "badsyntax_3131.py", |
| 12 | + "support/socket_helper.py", |
| 13 | + "test_fstring.py", |
| 14 | + "test_lib2to3/data/bom.py", |
| 15 | + "test_lib2to3/data/crlf.py", |
| 16 | + "test_lib2to3/data/different_encoding.py", |
| 17 | + "test_lib2to3/data/false_encoding.py", |
| 18 | + "test_lib2to3/data/py2_test_grammar.py", |
| 19 | + # TODO Fix: F811 Redefinition of unused name |
| 20 | + "test_buffer.py", |
| 21 | + "test_capi/test_misc.py", |
| 22 | + "test_capi/test_unicode.py", |
| 23 | + "test_ctypes/test_arrays.py", |
| 24 | + "test_ctypes/test_functions.py", |
| 25 | + "test_dataclasses.py", |
| 26 | + "test_descr.py", |
| 27 | + "test_enum.py", |
| 28 | + "test_functools.py", |
| 29 | + "test_genericclass.py", |
| 30 | + "test_grammar.py", |
| 31 | + "test_import/__init__.py", |
| 32 | + "test_keywordonlyarg.py", |
| 33 | + "test_lib2to3/data/py3_test_grammar.py", |
| 34 | + "test_pkg.py", |
| 35 | + "test_subclassinit.py", |
| 36 | + "test_tokenize.py", |
| 37 | + "test_typing.py", |
| 38 | + "test_yield_from.py", |
| 39 | + "time_hashlib.py", |
| 40 | + # Pending https://github.com/python/cpython/pull/109139 |
| 41 | + "test_monitoring.py", |
| 42 | +] |
0 commit comments