Skip to content

Commit 02dd91b

Browse files
committed
chore: simplify Husky hooks, tweak VS Code titleBar colors, and update package.json
1 parent 5f532e8 commit 02dd91b

File tree

5 files changed

+710
-836
lines changed

5 files changed

+710
-836
lines changed

.husky/commit-msg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
4-
# Commitlint check
5-
npx commitlint --edit "$1" > /dev/null 2>&1
1+
npx --no -- commitlint --edit "${1:-.git/COMMIT_EDITMSG}"
62
RESULT=$?
73

84
if [ $RESULT -ne 0 ]; then

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
# #!/usr/bin/env sh
2-
# . "$(dirname -- "$0")/_/husky.sh"
3-
41
npm test

.vscode/settings.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,14 @@
119119
"conventionalCommits.promptBody": true,
120120
"conventionalCommits.promptFooter": true,
121121

122+
// ======================================
123+
// Custom Title Bar Colors
124+
// ======================================
125+
122126
"workbench.colorCustomizations": {
123-
"titleBar.activeBackground": "#113963",
127+
"titleBar.activeBackground": "#231163b3",
124128
"titleBar.activeForeground": "#e7e7e7",
125-
"titleBar.inactiveBackground": "#0f3459",
129+
"titleBar.inactiveBackground": "#1c0e50cb",
126130
"titleBar.inactiveForeground": "#e7e7e799"
127131
}
128132
}

0 commit comments

Comments
 (0)