This is a followup article from my previous post.
Here we will be using git pre-commit to check for syntax error
while committing in JavaScript files.
We will need nodejs in our system. Please
check https://nodejs.org/en/ for downloading and install
steps.
Note: I am using ubuntu 14.04 for this setup.
Steps to add pre-commit JavaScript syntax check with
git:
1. Use npm to install jslint package globally in your
system.
…
Showing entries 1 to 2
Feb
13
2016
Feb
06
2016
Many a times we have faced this problem that when we commit
something and it breaks something on the server due to some
syntax error.
I know that these can be caught by IDEs and
good editors, but sometimes there might be an syntax error
introduced after a code merge conflict resolution and
commit.
To address this, we can use git pre-commit hooks to check for any
syntax errors in the to be committed files.
There is a good script I found which does this at https://github.com/ReekenX/phpcheck-git
Steps to add pre-commit php syntax check with git:
(Issue …
Showing entries 1 to 2