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

Last change on this file since 532 was 475, checked in by hendrikvanantwerpen, 12 years ago
  • Added CouchDB script to make interacting with couch easier.
  • Use this script in the database configuration.
  • Get CSV export to work.
File size: 483 bytes
Line 
1{
2    "bitwise": true,
3    "curly": true,
4    "eqeqeq": true,
5    "forin": true,
6    "immed": true,
7    "indent": 4,
8    "latedef": "nofunc",
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    "laxcomma": true,
19
20    "devel": true,
21    "node": true,
22    "browser": true,
23    "couch": true,
24
25    "globals": {
26        "require": true,
27        "define": true
28    }
29}
Note: See TracBrowser for help on using the repository browser.