This product is not supported for your selected Datadog site. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:python-inclusive/function-definition
Language: Python
Severity: Notice
Category: Code Style
Description
Ensure that some words are not used in the codebase and suggest replacement when appropriate.
Examples of replacement suggestions:
blacklist with denylist
whitelist with allowlist
master with primary
slave with secondary
Non-Compliant Code Examples
# blacklist located at the end of the stringdeffoo_blacklist():pass
# Do not use the name blacklist, even if casing is mixeddefBlaCKliSt_NaMeS():passdefwHiTeLisT_NaMeS():pass
# blacklist at the beginning of the function namedefblacklist_names():pass
# wrong identifier in the function name and parametersdefblacklist_names(master,slave):pass
Compliant Code Examples
deffoo_denylist():pass
Seamless integrations. Try Datadog Code Security
Datadog Code Security
Try this rule and analyze your code with Datadog Code Security
How to use this rule
1
2
rulesets:- python-inclusive # Rules to enforce Python inclusive.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Security scans to your CI pipelines