🚨 Fixed some linter warnings.

This commit is contained in:
Myles Braithwaite
2023-04-22 12:53:04 -04:00
parent cf5df760a1
commit 0f6c0f8731
6 changed files with 4338 additions and 1049 deletions

View File

@ -1,18 +1,32 @@
{
"devDependencies": {
"remark-cli": "10.0.1",
"remark-cli": "11.0.0",
"remark-lint": "9.1.1",
"remark-lint-alphabetize-lists": "3.0.0",
"remark-lint-are-links-valid": "1.0.3",
"remark-lint-are-links-valid-alive": "0.3.0",
"remark-lint-are-links-valid-duplicate": "0.2.2",
"remark-validate-links": "11.0.2"
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"remark-validate-links": "12.1.0"
},
"dependencies": {
"showdown": "1.9.1"
"showdown": "2.1.0"
},
"scripts": {
"test": "remark -u validate-links README.md",
"lint": "remark -u validate-links README.md --frail",
"lintfix": "npm run lint -- -o",
"build": "mkdir -p build/ && showdown makehtml -i README.md -o build/index.html"
},
"remarkConfig": {
"settings": {
"bullet": "-",
"emphasis": "_",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended"
]
}
}