diff --git a/.husky/prepare-commit-msg b/.husky/prepare-commit-msg deleted file mode 100644 index d6f385b0..00000000 --- a/.husky/prepare-commit-msg +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -exec < /dev/tty && node_modules/.bin/cz --hook || true diff --git a/changelog.config.mjs b/changelog.config.mjs deleted file mode 100644 index c2d75ba2..00000000 --- a/changelog.config.mjs +++ /dev/null @@ -1,72 +0,0 @@ -const config = { - disableEmoji: false, - format: '{type}{scope}: {emoji}{subject}', - list: ['test', 'feat', 'fix', 'chore', 'docs', 'refactor', 'style', 'ci', 'perf'], - maxMessageLength: 64, - minMessageLength: 3, - questions: ['type', 'scope', 'subject', 'body', 'breaking', 'issues', 'lerna'], - scopes: [], - types: { - chore: { - description: 'Build process or auxiliary tool changes', - emoji: '🤖', - value: 'chore' - }, - ci: { - description: 'CI related changes', - emoji: '🎡', - value: 'ci' - }, - docs: { - description: 'Documentation only changes', - emoji: '✏️', - value: 'docs' - }, - feat: { - description: 'A new feature', - emoji: '🎸', - value: 'feat' - }, - fix: { - description: 'A bug fix', - emoji: '🐛', - value: 'fix' - }, - perf: { - description: 'A code change that improves performance', - emoji: '⚡️', - value: 'perf' - }, - refactor: { - description: 'A code change that neither fixes a bug or adds a feature', - emoji: '💡', - value: 'refactor' - }, - release: { - description: 'Create a release commit', - emoji: '🏹', - value: 'release' - }, - style: { - description: 'Markup, white-space, formatting, missing semi-colons...', - emoji: '💄', - value: 'style' - }, - test: { - description: 'Adding missing tests', - emoji: '💍', - value: 'test' - }, - messages: { - type: 'Select the type of change that you\'re committing:', - customScope: 'Select the scope this component affects:', - subject: 'Write a short, imperative mood description of the change:\n', - body: 'Provide a longer description of the change:\n ', - breaking: 'List any breaking changes:\n', - footer: 'Issues this commit closes, e.g #123:', - confirmCommit: 'The packages that this commit has affected\n', - }, - } -}; - -export default config; \ No newline at end of file diff --git a/package.json b/package.json index 24d6c0ce..5ef9c89a 100644 --- a/package.json +++ b/package.json @@ -79,12 +79,10 @@ "@typescript-eslint/eslint-plugin": "^8.45.0", "@typescript-eslint/parser": "^8.45.0", "autoprefixer": "^10.4.21", - "commitizen": "^4.3.1", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-react": "^7.37.5", - "git-cz": "^4.9.0", "husky": "^9.1.7", "lint-staged": "^16.2.3", "postcss": "^8.5.3",