From 79d264bfb008370a6af7ff42dc3962d0bf1ddf63 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Mon, 2 Apr 2018 15:43:03 +0900 Subject: travis: Introduce markdownlint When using IDE (e.g. VSCode), we can easily check the results of markdownlint and it should not be a heavy burden to write docs. This patch introduces an unit test to invoke markdownlint on Travis-CI. See https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md, for configuration details of ".markdownlint.json". Signed-off-by: IWASE Yusuke --- .markdownlint.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .markdownlint.json (limited to '.markdownlint.json') diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 00000000..1f26268a --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,13 @@ +{ + "no-hard-tabs": { + "code_blocks": false + }, + "line-length": false, + "commands-show-output": false, + "no-duplicate-header": false, + "no-inline-html": { + "allowed_elements": [ + "br" + ] + } +} \ No newline at end of file -- cgit v1.2.3