1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools/check-md: allow directories as args and deprecate -all flag (#8582)

This commit is contained in:
Lukas Neubert
2021-02-05 16:46:20 +01:00
committed by GitHub
parent 12e8e31bb2
commit 76ea3e7b41
9 changed files with 71 additions and 52 deletions

View File

@@ -13,6 +13,6 @@ jobs:
- name: Build V
run: make
- name: Check markdown line length & code examples
run: ./v run cmd/tools/check-md.v -hide-warnings -all
run: ./v check-md -hide-warnings .
## NB: -hide-warnings is used here, so that the output is less noisy,
## thus real errors are easier to spot.