tact-lang / web-ide

TON Web IDE is your ultimate browser-based IDE designed to simplify the journey of writing, testing, compiling, deploying, and interacting with smart contracts on TON. Write smart contracts from anywhere, No setups, no downloads, just pure convenience and versatility.
https://ide.ton.org
MIT License
127 stars 12 forks source link

build: remove commit hook for git-cz #136

Closed verytactical closed 4 weeks ago

verytactical commented 4 weeks ago

"Prepare commit message" hook runs not only on commit, but also on a variety of other git tasks such as rebase and merge, sometimes in an automated way from IDE (Jetbrains IDEs do that). git-cz utility wasn't built with this in mind, and leads to bad developer experience. We can use already existing npm run commit script for this.

Also "prepare" npm hook runs when a package is packaged (npm pack), and husky is intended to be run on install.

Closes #139