@@ -261,6 +261,7 @@ per-file-ignores."cmd2/argparse_custom.py" = [
261
261
]
262
262
263
263
per-file-ignores."examples/*.py" = [
264
+ " ANN" , # Ignore all type annotation rules in examples folder
264
265
" D" , # Ignore all pydocstyle rules in examples folder
265
266
" INP001" , # Module is part of an implicit namespace
266
267
" PLW2901" , # loop variable overwritten inside loop
@@ -280,12 +281,14 @@ per-file-ignores."examples/unicode_commands.py" = [
280
281
]
281
282
282
283
per-file-ignores."plugins/*.py" = [
284
+ " ANN" , # Ignore all type annotation rules in test folders
283
285
" D" , # Ignore all pydocstyle rules in test folders
284
286
" INP001" , # Module is part of an implicit namespace
285
287
" S" , # Ignore all Security rules in test folders
286
288
]
287
289
288
290
per-file-ignores."tests/*.py" = [
291
+ " ANN" , # Ignore all type annotation rules in test folders
289
292
" D" , # Ignore all pydocstyle rules in test folders
290
293
" E501" , # Line too long
291
294
" S" , # Ignore all Security rules in test folders
@@ -301,8 +304,9 @@ per-file-ignores."tests/pyscript/*.py" = [
301
304
]
302
305
303
306
per-file-ignores."tests_isolated/*.py" = [
304
- " D" , # Ignore all pydocstyle rules in test folders
305
- " S" , # Ignore all Security rules in test folders
307
+ " ANN" , # Ignore all type annotation rules in test folders
308
+ " D" , # Ignore all pydocstyle rules in test folders
309
+ " S" , # Ignore all Security rules in test folders
306
310
]
307
311
308
312
per-file-ignores."tests_isolated/test_commandset/test_commandset.py" = [
0 commit comments