Skip to content

Commit d76e32e

Browse files
committed
Add linting
1 parent 8b08332 commit d76e32e

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
*.log
3+
node_modules/

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "nlcst",
3+
"private": true,
4+
"version": "0.0.0",
5+
"description": "natural language concrete syntax tree",
6+
"license": "MIT",
7+
"keywords": [],
8+
"repository": "syntax-tree/nlcst",
9+
"bugs": "https://github.com/syntax-tree/nlcst/issues",
10+
"author": "Titus Wormer <tituswormer@gmail.com> (wooorm.com)",
11+
"contributors": [
12+
"Titus Wormer <tituswormer@gmail.com> (wooorm.com)",
13+
"Eugene Sharygin <eush77@gmail.com>"
14+
],
15+
"devDependencies": {
16+
"remark-cli": "^6.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+
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ exact replica of the original document can be re-created.
1313
**NLCST** is a subset of [**Unist**][unist], and implemented by
1414
[**retext**][retext].
1515

16-
This document may not be released. See [releases][] for released
17-
documents. The latest released version is [`1.0.1`][latest].
16+
This document may not be released. See [releases][] for released
17+
documents. The latest released version is [`1.0.1`][latest].
1818

1919
## Table of Contents
2020

0 commit comments

Comments
 (0)