Skip to content

Commit

Permalink
scripts: compliance: Use consistent naming convention
Browse files Browse the repository at this point in the history
Tests are named with CamelCase in general, use that in the names.

Signed-off-by: Carles Cufi <[email protected]>
  • Loading branch information
carlescufi authored and nashif committed Nov 21, 2022
1 parent 8c12efe commit 66ad0e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions scripts/ci/check_compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -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>"

Expand Down Expand Up @@ -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>"

Expand Down

0 comments on commit 66ad0e6

Please sign in to comment.