diff options
author | Ian Lewis <ianmlewis@gmail.com> | 2019-10-24 00:21:45 -0400 |
---|---|---|
committer | Ian Lewis <ianmlewis@gmail.com> | 2019-10-24 02:35:07 -0400 |
commit | a7803353f03528042f15ade30462b88cb8b2ddc6 (patch) | |
tree | 55c458e60a77efb17ef2af9cbb79f7f38b33296a /package.json | |
parent | cf240fdf731ff631a37e1a35e6b4e4f2c4203a2d (diff) |
Added lint-md linter for markdown
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/package.json b/package.json index 7e5f58b09..e9e0461b3 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,18 @@ { - "name": "gvisor-website", - "version": "0.0.0", - "devDependencies": { - "autoprefixer": "^9.4.7", - "postcss-cli": "^6.1.1" - } + "name": "gvisor-website", + "version": "0.0.0", + "devDependencies": { + "autoprefixer": "^9.4.7", + "postcss-cli": "^6.1.1", + "remark-cli": "^7.0.0", + "remark-preset-lint-recommended": "^3.0.3" + }, + "scripts": { + "lint-md": "remark ./content -f" + }, + "remarkConfig": { + "plugins": [ + "remark-preset-lint-recommended" + ] + } } |