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

Last change on this file since 525 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
RevLine 
[443]1{
2    "bitwise": true,
3    "curly": true,
4    "eqeqeq": true,
[469]5    "forin": true,
[443]6    "immed": true,
7    "indent": 4,
[475]8    "latedef": "nofunc",
[443]9    "newcap": true,
10    "noarg": true,
[469]11    "noempty": true,
[443]12    "undef": true,
13    "unused": false,
14    "strict": false,
[469]15    "trailing": false,
[443]16
17    "loopfunc": true,
[475]18    "laxcomma": true,
[443]19
20    "devel": true,
21    "node": true,
[469]22    "browser": true,
23    "couch": true,
[443]24
25    "globals": {
26        "require": true,
27        "define": true
28    }
29}
Note: See TracBrowser for help on using the repository browser.