Files
docs/package.json
XhmikosR 19a2bc0787 Add Markdownlint (#203)
* Add markdownlint-cli

This is an initial config but should be tweaked later as needed.

* Adhere to the new rules
2020-01-27 11:52:32 -08:00

26 lines
603 B
JSON

{
"name": "docs",
"private": true,
"version": "1.0.0",
"description": "Source for the official Pi-hole documentation",
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/pi-hole/docs.git"
},
"keywords": [],
"author": "",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/pi-hole/docs/issues"
},
"homepage": "https://docs.pi-hole.net/",
"scripts": {
"markdownlint": "markdownlint \"**/*.md\" -i \"**/node_modules/**\"",
"test": "npm run markdownlint"
},
"devDependencies": {
"markdownlint-cli": "^0.21.0"
}
}