Browse Source

add npm script to lint all javascript blocks in the docs using standard

Zeke Sikelianos 8 years ago
parent
commit
dd9935a9d7
1 changed files with 3 additions and 1 deletions
  1. 3 1
      package.json

+ 3 - 1
package.json

@@ -4,7 +4,8 @@
   "devDependencies": {
     "asar": "^0.11.0",
     "request": "*",
-    "standard": "^7.1.2"
+    "standard": "^7.1.2",
+    "standard-markdown": "^1.0.3"
   },
   "optionalDependencies": {
     "runas": "^3.0.0"
@@ -26,6 +27,7 @@
     "lint": "npm run lint-js && npm run lint-cpp",
     "lint-js": "standard && cd spec && standard",
     "lint-cpp": "python ./script/cpplint.py",
+    "lint-docs": "standard-markdown docs",
     "preinstall": "node -e 'process.exit(0)'",
     "repl": "python ./script/start.py --interactive",
     "start": "python ./script/start.py",