Commit 66ad0e68 authored by Carles Cufi's avatar Carles Cufi Committed by Anas Nashif
Browse files

scripts: compliance: Use consistent naming convention



Tests are named with CamelCase in general, use that in the names.

Signed-off-by: default avatarCarles Cufi <carles.cufi@nordicsemi.no>
parent 8c12efe2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -66,11 +66,11 @@ tags

# from check_compliance.py
Gitlint.txt
checkpatch.txt
Checkpatch.txt
Kconfig.txt
KconfigBasic.txt
Codeowners.txt
Nits.txt
pylint.txt
Pylint.txt
Identity.txt
DevicetreeBindings.txt
+2 −2
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ class CheckPatch(ComplianceTest):
    Runs checkpatch and reports found issues

    """
    name = "checkpatch"
    name = "Checkpatch"
    doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details."
    path_hint = "<git-top>"

@@ -938,7 +938,7 @@ class PyLint(ComplianceTest):
    Runs pylint on all .py files, with a limited set of checks enabled. The
    configuration is in the pylintrc file.
    """
    name = "pylint"
    name = "Pylint"
    doc = "See https://www.pylint.org/ for more details"
    path_hint = "<git-top>"