Check the variable names and suggest better names.
Examples of replacement suggestions:
blacklist with denylist
whitelist with allowlist
master with primary
slave with secondary
Non-Compliant Code Examples
# whitelist names to prevent unauthorized usagedeffilter_names(names):pass# she SHE should check her code defnew_function_from_helen():passclassFoo:# he should check hisdefnew_function_from_joe():pass
Compliant Code Examples
# allowlist names to prevent unauthorized usagedeffilter_names(names):pass# the comments do not have an history of issuesdeffoo(bar):baz()
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