File tree 4 files changed +4
-7
lines changed
doc/user_guide/configuration
4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -1523,7 +1523,7 @@ Standard Checkers
1523
1523
1524
1524
--ignored-argument-names
1525
1525
""""""""""""""""""""""""
1526
- *Argument names that match this expression will be ignored. Default to name with leading underscore. *
1526
+ *Argument names that match this expression will be ignored. *
1527
1527
1528
1528
**Default: ** ``re.compile('_.*|^ignored_|^unused_') ``
1529
1529
Original file line number Diff line number Diff line change @@ -468,8 +468,7 @@ callbacks=cb_,
468
468
# not be used).
469
469
dummy-variables-rgx =_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
470
470
471
- # Argument names that match this expression will be ignored. Default to name
472
- # with leading underscore.
471
+ # Argument names that match this expression will be ignored.
473
472
ignored-argument-names =_.*|^ignored_|^unused_
474
473
475
474
# Tells whether we should check for unused import in __init__ files.
Original file line number Diff line number Diff line change @@ -509,8 +509,7 @@ callbacks = ["cb_", "_cb"]
509
509
# be used).
510
510
dummy-variables-rgx = " _+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_"
511
511
512
- # Argument names that match this expression will be ignored. Default to name with
513
- # leading underscore.
512
+ # Argument names that match this expression will be ignored.
514
513
ignored-argument-names = " _.*|^ignored_|^unused_"
515
514
516
515
# Tells whether we should check for unused import in __init__ files.
Original file line number Diff line number Diff line change @@ -1056,8 +1056,7 @@ class VariablesChecker(BaseChecker):
1056
1056
"default" : IGNORED_ARGUMENT_NAMES ,
1057
1057
"type" : "regexp" ,
1058
1058
"metavar" : "<regexp>" ,
1059
- "help" : "Argument names that match this expression will be "
1060
- "ignored. Default to name with leading underscore." ,
1059
+ "help" : "Argument names that match this expression will be ignored." ,
1061
1060
},
1062
1061
),
1063
1062
(
You can’t perform that action at this time.
0 commit comments