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()
シームレスな統合。 Datadog Code Security をお試しください
Datadog Code Security
このルールを試し、Datadog Code Security でコードを解析する
このルールの使用方法
1
2
rulesets:- python-inclusive # Rules to enforce Python inclusive.