Skip to content

Commit 05afc26

Browse files
committed
feat: add commitlint configuration for standardized commit messages
- Introduced commitlint with @commitlint/cli and @commitlint/config-conventional as devDependencies in package.json. - Created a new commitlint.config.mjs file to enforce conventional commit message standards. - Updated pnpm-lock.yaml to include the new dependencies and their resolution details.
1 parent 96d2a9f commit 05afc26

File tree

4 files changed

+530
-2
lines changed

4 files changed

+530
-2
lines changed

commitlint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const config = { extends: ["@commitlint/config-conventional"] };
2+
3+
export default config;

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
},
2828
"devDependencies": {
2929
"@biomejs/biome": "2.4.4",
30+
"@commitlint/cli": "20.4.2",
31+
"@commitlint/config-conventional": "20.4.2",
3032
"@tailwindcss/postcss": "4.2.1",
3133
"@types/node": "20.19.35",
3234
"@types/react": "19.2.14",

0 commit comments

Comments
 (0)