From 988d5f014dfe043c68b12d9062c9e08ba110a470 Mon Sep 17 00:00:00 2001 From: Astronidsp Date: Thu, 22 Feb 2024 22:13:46 +0530 Subject: [PATCH] test --- package.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..294d097 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "devDependencies": { + "markdownlint-cli": "^0.26.0", + "textlint": "^11.6.3", + "textlint-filter-rule-comments": "^1.2.2", + "textlint-filter-rule-whitelist": "^2.0.0", + "textlint-rule-terminology": "^2.1.4" + }, + "scripts": { + "test": "npm run lint-markdown && npm run lint-terminology", + "lint-terminology": "textlint ./README.md", + "lint-markdown": "markdownlint ./README.md --ignore node_modules", + "link-check": "find README -name \\*.md -exec markdown-link-check -c markdown-link-check-config.json 1> log 2> err {} \\; && if [ -e err ] && grep -q \"ERROR:\" err ; then exit 113 ; else echo -e \"All good\"; fi" + } + } \ No newline at end of file