Skip to content

Commit a909172

Browse files
author
Developer
committed
refactor: huge refactor on the whole project
break up in component files. install husky and commitizen. prepare for proper release management with versioning
1 parent ddbcb5e commit a909172

16 files changed

+3999
-384
lines changed

.eslintrc.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es2021": true
5+
},
6+
"extends": ["airbnb-base"],
7+
"parserOptions": {
8+
"ecmaVersion": "latest"
9+
},
10+
"rules": {
11+
// You can override specific Airbnb rules here if needed
12+
// For example:
13+
// "no-console": "off"
14+
}
15+
}

.husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm test

.husky/pre-commit-message

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
exec < /dev/tty && npx cz --hook || true

0 commit comments

Comments
 (0)