summaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2020-01-21 01:11:58 -0500
committerIan Lewis <ianlewis@google.com>2020-01-21 01:11:58 -0500
commita910cc8fd10e508de56e97c2de2af289c1f1f7bb (patch)
treed41db4d1a236f32cd62b4d8a22a7ca25bdc0075e /package.json
parentdcd8504d9866a9b0d95fadbff79e599f5d6893db (diff)
parent3bdcdb0097d4a1d499d78c9e5a50dab2e1a01e0a (diff)
Merge branch 'lint-md'
Diffstat (limited to 'package.json')
-rw-r--r--package.json26
1 files changed, 20 insertions, 6 deletions
diff --git a/package.json b/package.json
index 7e5f58b09..c52e26d82 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,22 @@
{
- "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": {
+ "settings": {
+ "footnotes": true
+ },
+ "plugins": [
+ "remark-preset-lint-recommended",
+ ["remark-lint-list-item-indent", false]
+ ]
+ }
}