Skip to content

Commit 410d642

Browse files
committed
Add linting
1 parent 949cc6f commit 410d642

File tree

3 files changed

+200
-248
lines changed

3 files changed

+200
-248
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
*.log
3+
node_modules/

package.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "mdast",
3+
"private": true,
4+
"version": "0.0.0",
5+
"description": "markdown abstract syntax tree",
6+
"license": "MIT",
7+
"keywords": [],
8+
"repository": "syntax-tree/mdast",
9+
"bugs": "https://github.com/syntax-tree/mdast/issues",
10+
"author": "Titus Wormer <[email protected]> (wooorm.com)",
11+
"contributors": [
12+
"Titus Wormer <[email protected]> (wooorm.com)",
13+
"Eugene Sharygin <[email protected]>"
14+
],
15+
"devDependencies": {
16+
"remark-cli": "^5.0.0",
17+
"remark-preset-wooorm": "^4.0.0"
18+
},
19+
"scripts": {
20+
"format": "remark . -qfo"
21+
},
22+
"remarkConfig": {
23+
"plugins": [
24+
"preset-wooorm"
25+
]
26+
}
27+
}

0 commit comments

Comments
 (0)