mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-01 11:38:18 +03:00
20e56b7171
Merge in DNS/adguard-home from more-md-lint to master Squashed commit of the following: commit 39e7ea3b441ebf48c5b0d5c2b5b85620515bbea3 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Dec 19 17:03:36 2024 +0300 all: imp docs more commit 7aa08036b239d7eb19f674a6c4bfaf1325ff4bff Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Dec 19 16:08:13 2024 +0300 all: add more docs to lint
28 lines
584 B
Bash
28 lines
584 B
Bash
#!/bin/sh
|
|
|
|
# This comment is used to simplify checking local copies of the script. Bump
|
|
# this number every time a remarkable change is made to this script.
|
|
#
|
|
# AdGuard-Project-Version: 3
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
readonly verbose
|
|
|
|
# Don't use -f, because we use globs in this script.
|
|
set -e -u
|
|
|
|
if [ "$verbose" -gt '0' ]; then
|
|
set -x
|
|
fi
|
|
|
|
# TODO(e.burkov): Add README.md and possibly AGHTechDoc.md.
|
|
markdownlint \
|
|
./CHANGELOG.md \
|
|
./CONTRIBUTING.md \
|
|
./HACKING.md \
|
|
./SECURITY.md \
|
|
./internal/next/changelog.md \
|
|
./internal/dhcpd/*.md \
|
|
./openapi/*.md \
|
|
./scripts/*.md \
|
|
;
|