chore: remove usage of git hooks (husky, lint-staged, commitlint) + usage of node --run

This commit is contained in:
2024-09-07 00:03:10 +02:00
parent 85f465306f
commit dd70d6da3a
16 changed files with 665 additions and 3658 deletions

View File

@ -30,42 +30,29 @@
"npm": ">=9.0.0"
},
"scripts": {
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check --ignore-path .gitignore",
"lint:javascript": "tsc --project jsconfig.json --noEmit",
"lint:staged": "lint-staged",
"test": "node --test",
"release": "semantic-release",
"postinstall": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
"release": "semantic-release"
},
"dependencies": {
"markdown-it": "14.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@types/markdown-it": "14.1.1",
"@types/markdown-it": "14.1.2",
"@types/node": "20.12.12",
"editorconfig-checker": "5.1.5",
"editorconfig-checker": "5.1.8",
"eslint": "8.57.0",
"eslint-config-conventions": "14.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.2.0",
"eslint-plugin-unicorn": "53.0.0",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"markdownlint": "0.34.0",
"markdownlint-cli2": "0.13.0",
"pinst": "3.0.0",
"prettier": "3.2.5",
"eslint-config-conventions": "14.4.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "55.0.0",
"markdownlint": "0.35.0",
"markdownlint-cli2": "0.14.0",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"typescript": "5.4.5"
"typescript": "5.5.4"
}
}