Skip to content

Commit 400555d

Browse files
committed
Enable Markdown linting
1 parent ec95555 commit 400555d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

tools/ci/circle/script

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,12 @@ lint() {
237237
echo 'Linting package.json failed.' >&2
238238
return 1
239239
fi
240-
# FIXME: temporarily disabled until Remark deps are updated...
241-
# echo 'Linting Markdown files...' >&2
242-
# make lint-markdown >> "$1" 2>&1
243-
# if [[ "$?" -ne 0 ]]; then
244-
# echo 'Linting Markdown failed.' >&2
245-
# return 1
246-
# fi
240+
echo 'Linting Markdown files...' >&2
241+
make lint-markdown >> "$1" 2>&1
242+
if [[ "$?" -ne 0 ]]; then
243+
echo 'Linting Markdown failed.' >&2
244+
return 1
245+
fi
247246
echo 'Linting passed.' >&2
248247
return 0
249248
}

0 commit comments

Comments
 (0)