8000 Adds `remark-lint` test · bitnom/functional-jargon-python@95f5c3e · GitHub
[go: up one dir, main page]

Skip to content

Commit 95f5c3e

Browse files
Adds remark-lint test
1 parent 3e85531 commit 95f5c3e

File tree

2 files changed

+1477
-0
lines changed

2 files changed

+1477
-0
lines changed

package.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "functional-jargon-python",
3+
"version": "1.0.0",
4+
"description": "Functional Programming jargons explained with Python",
5+
"scripts": {
6+
"test": "remark -f ."
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "git+https://github.com/dry-python/functional-jargon-python.git"
11+
},
12+
"keywords": [
13+
"functional-programming",
14+
"jargon",
15+
"python"
16+
],
17+
"license": "MIT",
18+
"bugs": {
19+
"url": "https://github.com/dry-python/functional-jargon-python/issues"
20+
},
21+
"homepage": "https://github.com/dry-python/functional-jargon-python#readme",
22+
"dependencies": {
23+
"remark": "^12.0.1",
24+
"remark-cli": "^8.0.1",
25+
"remark-lint": "^7.0.1",
26+
"remark-lint-code-block-style": "^2.0.1",
27+
"remark-lint-no-empty-url": "^2.0.1",
28+
"remark-lint-no-html": "^2.0.1",
29+
"remark-lint-no-tabs": "^2.0.1",
30+
"remark-preset-lint-consistent": "^3.0.1",
31+
"remark-preset-lint-recommended": "^4.0.1",
32+
"remark-validate-links": "^10.0.2"
33+
},
34+
"remarkConfig": {
35+
"plugins": [
36+
"lint",
37+
"lint-no-tabs",
38+
"lint-no-html",
39+
"lint-no-empty-url",
40+
"lint-code-block-style",
41+
"validate-links",
42+
"preset-lint-recommended",
43+
"preset-lint-consistent"
44+
]
45+
}
46+
}

0 commit comments

Comments
 (0)
0