We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f64e30 commit 6a00a18Copy full SHA for 6a00a18
1 file changed
.github/workflows/docs-check.yml
@@ -20,14 +20,8 @@ jobs:
20
21
- name: Check for JSDoc comments in utility files
22
run: |
23
- grep -q "@param" headers.js
24
- grep -q "@returns" headers.js
25
- grep -q "@param" rest.js
26
- grep -q "@returns" rest.js
27
- grep -q "@param" predicates.js
28
- grep -q "@returns" predicates.js
29
- grep -q "@param" versioning.js
30
- grep -q "@returns" versioning.js
+ grep -R "@param" . --include="*.js"
+ grep -R "@returns" . --include="*.js"
31
32
- name: Check for TODO placeholders in documentation
33
0 commit comments