diff options
| author | Teddy Wing | 2015-09-25 02:10:25 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-09-25 02:10:25 -0400 |
| commit | a0541f78062430b8f0f48e020e7cea586e8b2f58 (patch) | |
| tree | 48ceb48dabfde53032051eafd9d961586780f9af | |
| parent | 83dd3b1f7dd4087724847ecd93da65ada301a273 (diff) | |
| download | git-hook-pre-commit-python-javascript-syntax-linter-a0541f78062430b8f0f48e020e7cea586e8b2f58.tar.bz2 | |
Add 'jshint'
* Create a package.json with 'jshint' as a dev dependency
* .gitignore: Ignore node_modules because why not, and it only has dev
dependencies in it.
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | package.json | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -1 +1,2 @@ /virtualenv/ +/node_modules/ diff --git a/package.json b/package.json new file mode 100644 index 0000000..4cf411a --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "name": "git-hook-pre-commit-syntax-linter", + "version": "0.0.1", + "devDependencies": { + "jshint": "^2.8.0" + } +} |
