From 4117389b991ad814588a8d11c53a5f99b14c6b42 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Sat, 30 Jul 2022 10:53:53 +0200 Subject: [doc] Remove hard-coded default in 'ignored-argument-names' description (#7239) --- examples/pylintrc | 3 +-- examples/pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'examples') diff --git a/examples/pylintrc b/examples/pylintrc index d3f27833b..24fce68d2 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -468,8 +468,7 @@ callbacks=cb_, # not be used). dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_ -# Argument names that match this expression will be ignored. Default to name -# with leading underscore. +# Argument names that match this expression will be ignored. ignored-argument-names=_.*|^ignored_|^unused_ # Tells whether we should check for unused import in __init__ files. diff --git a/examples/pyproject.toml b/examples/pyproject.toml index 4147184a8..061ddaf22 100644 --- a/examples/pyproject.toml +++ b/examples/pyproject.toml @@ -509,8 +509,7 @@ callbacks = ["cb_", "_cb"] # be used). dummy-variables-rgx = "_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_" -# Argument names that match this expression will be ignored. Default to name with -# leading underscore. +# Argument names that match this expression will be ignored. ignored-argument-names = "_.*|^ignored_|^unused_" # Tells whether we should check for unused import in __init__ files. -- cgit v1.2.1