Skip to content

Commit 3339b4d

Browse files
committed
fix: add ability to lint markdown
1 parent a614ce4 commit 3339b4d

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
**/.DS_Store
2+
node_modules
3+
yarn.lock

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "nodejs-reference-architecture",
3+
"version": "0.1.0",
4+
"description": "Reference architecture",
5+
"private": true,
6+
"main": "index.js",
7+
"directories": {
8+
"doc": "docs"
9+
},
10+
"scripts": {
11+
"lint": "prettier ./docs/**/*.md --write"
12+
},
13+
"dependencies": {
14+
"prettier": "2.0.5"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/nodeshift/nodejs-reference-architecture.git"
19+
},
20+
"author": "",
21+
"license": "ISC",
22+
"bugs": {
23+
"url": "https://github.com/nodeshift/nodejs-reference-architecture/issues"
24+
},
25+
"homepage": "https://github.com/nodeshift/nodejs-reference-architecture#readme"
26+
}

0 commit comments

Comments
 (0)