scripts: compliance: Use consistent naming convention
Tests are named with CamelCase in general, use that in the names. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
8c12efe2e5
commit
66ad0e68a6
2 changed files with 4 additions and 4 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue