From 7cac7cfc5734460c071e55cb88f985e429c6a2b3 Mon Sep 17 00:00:00 2001 From: Kiko Beats Date: Fri, 7 Oct 2016 13:06:57 +0200 Subject: [PATCH] Add markdown lint --- README.md | 1 - package.json | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 172e9f9..176139c 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,6 @@ var schema = osom({ updatedAt: String }) - module.exports = async.asyncify(schema) module.exports.sync = schema ``` diff --git a/package.json b/package.json index b5c31da..1cfe42e 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "nyc": "latest", "should": "latest", "standard": "latest", + "standard-markdown": "~2.1.1", "travis-after-all": "latest" }, "engines": { @@ -47,7 +48,7 @@ "scripts": { "clean": "rm -rf node_modules", "coveralls": "nyc report --reporter=text-lcov | coveralls", - "lint": "standard lib", + "lint": "standard && standard-markdown", "pretest": "npm run lint", "test": "nyc mocha" },