chore: initial environment setup

This commit is contained in:
2026-02-24 11:38:36 -06:00
commit b340b1790f
18 changed files with 1214 additions and 0 deletions

1
.husky/commit-msg Normal file
View File

@@ -0,0 +1 @@
bunx commitlint --edit $1

14
.husky/install.mts Normal file
View File

@@ -0,0 +1,14 @@
if (
process.env.NODE_ENV === 'production' ||
process.env.CI === 'true' ||
process.env.BUILD === 'true' ||
process.env.SKIP_HUSKY === 'true'
) {
console.log(
'Skipping husky install. If you are in a CI, Building or Production environment you can safely ignore this.'
)
process.exit(0)
}
const husky = (await import('husky')).default
console.log(husky())

1
.husky/pre-commit Normal file
View File

@@ -0,0 +1 @@
bunx lint-staged