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

Last change on this file since 473 was 469, checked in by hendrikvanantwerpen, 12 years ago

Speed-up build process.

Dropped the development build for generating files in the source
tree. This is a bit more messy, since these files will be checked in
as well. Teh extra copy to build/development was very slow though and
annoying when rapid test cycles were needed. A copy-on-newer function
did not improve much, traversing in Node/grunt seems to take time.

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