org.sonar.l10n.py.rules.python.S100.html Maven / Gradle / Ivy
The newest version!
Why is this an issue?
Shared naming conventions allow teams to collaborate efficiently.
This rule raises an issue when a method name does not match a provided regular expression.
For example, with the default provided regular expression ^[a-z_][a-z0-9_]*$
, the method:
class MyClass:
def MyMethod(a,b): # Noncompliant
...
should be renamed to
class MyClass:
def my_method(a,b):
...
© 2015 - 2025 Weber Informatics LLC | Privacy Policy