File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ optional-dependencies.dev = [
70
70
" pydocstyle==6.3" ,
71
71
" pyenchant==3.3.0rc1" ,
72
72
" pylint==3.3.3" ,
73
- " pylint-per-file-ignores==1.3.2 " ,
73
+ " pylint-per-file-ignores==1.4.0 " ,
74
74
" pyproject-fmt==2.5.0" ,
75
75
" pyright==1.1.392.post0" ,
76
76
" pyroma==4.2" ,
@@ -228,16 +228,13 @@ load-plugins = [
228
228
' pylint.extensions.typing' ,
229
229
]
230
230
231
- # This format is described in the following issue:
232
- # https://github.com/christopherpickering/pylint-per-file-ignores/issues/160
233
- #
234
231
# We ignore invalid names because:
235
232
# - We want to use generated module names, which may not be valid, but are never seen.
236
233
# - We want to use global variables in documentation, which may not be uppercase
237
- per-file-ignores = """
238
- docs/:invalid-name
239
- doccmd_README_rst.*.py:invalid-name
240
- """
234
+ per-file-ignores = [
235
+ " docs/:invalid-name" ,
236
+ " doccmd_README_rst.*.py:invalid-name" ,
237
+ ]
241
238
242
239
[tool .pylint .'MESSAGES CONTROL' ]
243
240
You can’t perform that action at this time.
0 commit comments