Skip to content
Snippets Groups Projects
Commit f8a9b1c1 authored by murgatroid99's avatar murgatroid99
Browse files

Added lint script

parent 04e3a6e3
No related branches found
No related tags found
No related merge requests found
{
"bitwise": true,
"curly": true,
"eqeqeq": true,
"esnext": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"maxlen": 100,
"newcap": true,
"node": true,
"noarg": true,
"quotmark": "single",
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"globals": {
/* Mocha-provided globals */
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
\ No newline at end of file
...@@ -3,10 +3,12 @@ ...@@ -3,10 +3,12 @@
"version": "0.2.0", "version": "0.2.0",
"description": "gRPC Library for Node", "description": "gRPC Library for Node",
"scripts": { "scripts": {
"lint": "jshint src test examples interop index.js",
"test": "./node_modules/mocha/bin/mocha" "test": "./node_modules/mocha/bin/mocha"
}, },
"dependencies": { "dependencies": {
"bindings": "^1.2.1", "bindings": "^1.2.1",
"jshint": "^2.5.5",
"nan": "~1.3.0", "nan": "~1.3.0",
"protobufjs": "murgatroid99/ProtoBuf.js", "protobufjs": "murgatroid99/ProtoBuf.js",
"underscore": "^1.7.0", "underscore": "^1.7.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment