Skip to content

Commit f2b0991

Browse files
stephanosionashif
authored andcommitted
scripts: check_compliance: Fix broken links to Contribution Guidelines
This commit fixes the broken links to the Contribution Guidelines in the Compliance Check script. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 9e323f1 commit f2b0991

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/ci/check_compliance.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class CheckPatch(ComplianceTest):
192192
193193
"""
194194
name = "checkpatch"
195-
doc = "See https://docs.zephyrproject.org/latest/contribute/#coding-style for more details."
195+
doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details."
196196
path_hint = "<git-top>"
197197

198198
def run(self):
@@ -737,7 +737,7 @@ class Nits(ComplianceTest):
737737
already covered by e.g. checkpatch.pl and pylint.
738738
"""
739739
name = "Nits"
740-
doc = "See https://docs.zephyrproject.org/latest/contribute/#coding-style for more details."
740+
doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details."
741741
path_hint = "<git-top>"
742742

743743
def run(self):
@@ -835,7 +835,7 @@ class GitLint(ComplianceTest):
835835
836836
"""
837837
name = "Gitlint"
838-
doc = "See https://docs.zephyrproject.org/latest/contribute/#commit-guidelines for more details"
838+
doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#commit-guidelines for more details"
839839
path_hint = "<git-top>"
840840

841841
def run(self):
@@ -923,7 +923,7 @@ class Identity(ComplianceTest):
923923
Checks if Emails of author and signed-off messages are consistent.
924924
"""
925925
name = "Identity"
926-
doc = "See https://docs.zephyrproject.org/latest/contribute/#commit-guidelines for more details"
926+
doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#commit-guidelines for more details"
927927
# git rev-list and git log don't depend on the current (sub)directory
928928
# unless explicited
929929
path_hint = "<git-top>"

0 commit comments

Comments
 (0)