Variables
Parameters
-
additional-builtins
(default: ``)List of additional names supposed to be defined in builtins. Remember that you should avoid defining new builtins when possible.
-
allow-global-unused-variables
(default:True
)Tells whether unused global variables should be treated as a violation.
-
allowed-redefined-builtins
(default: ``)List of names allowed to shadow builtins
-
callbacks
(default:cb_,_cb
)List of strings which can identify a callback function by name. A callback name must start or end with one of those strings.
-
dummy-variables-rgx
(default:_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
)A regular expression matching the name of dummy variables (i.e. expected to not be used).
-
ignored-argument-names
(default:_.*|^ignored_|^unused_
)Argument names that match this expression will be ignored. Default to name with leading underscore.
-
init-import
(default:False
)Tells whether we should check for unused import in init files.
-
redefining-builtins-modules
(default:six.moves,past.builtins,future.builtins,builtins,io
)List of qualified module names which can have objects that can redefine builtins.