1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

Meta: Also run markdown-check on markdown files in each Port subdir

This commit is contained in:
Ben Wiederhake 2023-05-20 01:36:52 +02:00 committed by Andreas Kling
parent 7ad212ff63
commit f43f83512e
2 changed files with 4 additions and 4 deletions

View file

@ -6,9 +6,9 @@
/*
* You may want to invoke the checker like this:
* $ cd Build/lagom
* $ ninja
* $ find ../../AK ../../Base ../../Documentation/ ../../Kernel/ ../../Meta/ ../../Ports/ ../../Tests/ ../../Userland/ -type f -name '*.md' | xargs ./markdown-check ../../README.md
* $ ninja -C Build/lagom
* $ export SERENITY_SOURCE_DIR=/path/to/serenity
* $ find AK Base Documentation Kernel Meta Ports Tests Userland -type f -name '*.md' -print0 | xargs -0 Build/lagom/markdown-check README.md CONTRIBUTING.md
*/
#include <AK/Format.h>