source: Dev/trunk/src/.jshintrc-generated @ 532

Last change on this file since 532 was 487, checked in by hendrikvanantwerpen, 11 years ago

Completed migration to API, without CouchDB proxy.

Move to API is now completed. The full API is password protected, a very
limited API is exposed for respondents, which works with secrets that
are passed in URLs.

Serverside the HTTPResult class was introduced, which is similar to
Promises, but specifically for HTTP. It carries a status code and
response and makes it easier to extract parts of async handling in
separate functions.

Fixed a bug in our schema (it seems optional attributes don't exist but
a required list does). Verification of our schema by grunt-tv4 didn't
work yet. Our schema is organized the wrong way (this is fixable),
but the json-schema schema has problems with simple types and $refs.

File size: 517 bytes
Line 
1{
2    "bitwise": true,
3    "curly": false,
4    "eqeqeq": true,
5    "forin": true,
6    "immed": true,
7    "indent": 2,
8    "latedef": true,
9    "newcap": false,
10    "noarg": true,
11    "noempty": true,
12    "undef": true,
13    "unused": false,
14    "strict": false,
15    "trailing": false,
16
17    "loopfunc": true,
18    "shadow": true,
19    "eqnull": true,
20
21    "devel": true,
22    "node": true,
23    "browser": true,
24    "couch": true,
25    "boss": true,
26
27    "globals": {
28        "require": true,
29        "define": true
30    }
31}
Note: See TracBrowser for help on using the repository browser.