Repository: couchdb-nmo Updated Branches: refs/heads/master 1f6c18ac4 -> 6860b3985
Add jshint definitions Project: http://git-wip-us.apache.org/repos/asf/couchdb-nmo/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-nmo/commit/6860b398 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-nmo/tree/6860b398 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-nmo/diff/6860b398 Branch: refs/heads/master Commit: 6860b398513013c79101160fbd5560703679b930 Parents: 1f6c18a Author: Garren Smith <[email protected]> Authored: Wed Aug 26 14:54:44 2015 +0200 Committer: Garren Smith <[email protected]> Committed: Fri Sep 4 13:42:34 2015 +0200 ---------------------------------------------------------------------- .jshintignore | 1 + .jshintrc | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-nmo/blob/6860b398/.jshintignore ---------------------------------------------------------------------- diff --git a/.jshintignore b/.jshintignore new file mode 100644 index 0000000..cf70988 --- /dev/null +++ b/.jshintignore @@ -0,0 +1 @@ +**/node_modules http://git-wip-us.apache.org/repos/asf/couchdb-nmo/blob/6860b398/.jshintrc ---------------------------------------------------------------------- diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..9d53e17 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,18 @@ +{ + "node": true, + "couch": true, + "esnext": true, + "bitwise": true, + "camelcase": true, + "curly": true, + "immed": true, + "newcap": true, + "noarg": true, + "undef": true, + "unused": "vars", + "nonbsp": true, + "expr": true, + "esnext": true, + "globals": { + } +}
