17 lines
252 B
Bash
Executable file
17 lines
252 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
# Check markdown styling (links, spacing, etc)
|
|
remark \
|
|
--no-stdout \
|
|
--quiet \
|
|
--frail \
|
|
./*.md \
|
|
./src/*.md
|
|
|
|
# Check text content (misspelling, weasel words, offensive writing)
|
|
textlint \
|
|
./*.md \
|
|
./src/*.md
|
|
|
|
|