Skip to content

Instantly share code, notes, and snippets.

@tigerclaw-az
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save tigerclaw-az/8977482 to your computer and use it in GitHub Desktop.

Select an option

Save tigerclaw-az/8977482 to your computer and use it in GitHub Desktop.

Revisions

  1. Erik Waibel revised this gist May 11, 2015. 1 changed file with 28 additions and 25 deletions.
    53 changes: 28 additions & 25 deletions .jshintrc
    Original file line number Diff line number Diff line change
    @@ -1,32 +1,35 @@
    {
    "browser": true,
    "curly": false,
    "dojo": true,
    "curly": true,
    "eqeqeq": true,
    "eqnull": false,
    "evil": false,
    "immed": true,
    "indent": 4,
    "jquery": true,
    "es5": false,
    "forin": true,
    "freeze": true,
    "funcscope": false,
    "futurehostile": true,
    "globalstrict": false,
    "iterator": false,
    "latedef": true,
    "loopfunc": true,
    "newcap": false,
    "node": true,
    "jasmine": true,
    "jquery": true,
    "maxdepth": 10,
    "maxparams": 5,
    "mocha": true,
    "noarg": true,
    "nonbsp": true,
    "nonew": true,
    "notypeof": false,
    "onecase": true,
    "quotmark": "single",
    "smarttabs": true,
    "strict": false,
    "trailing": false,
    "undef": false,
    "unused": false,
    "plusplus": false,
    "shadow": false,
    "singleGroups": true,
    "undef": true,
    "unused": true,
    "worker": true,
    "globals": {
    "jQuery": true,
    "console": true,
    "Foundation": true,
    "module": true,
    "document": true
    },
    "-W015": true,
    "-W044": true,
    "-W086": true,
    "-W093": true
    }
    "document": true,
    "_gm": true
    }
    }
  2. tigerclaw-az created this gist Feb 13, 2014.
    32 changes: 32 additions & 0 deletions .jshintrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,32 @@
    {
    "browser": true,
    "curly": false,
    "dojo": true,
    "eqeqeq": true,
    "eqnull": false,
    "evil": false,
    "immed": true,
    "indent": 4,
    "jquery": true,
    "latedef": true,
    "loopfunc": true,
    "newcap": false,
    "node": true,
    "onecase": true,
    "quotmark": "single",
    "smarttabs": true,
    "strict": false,
    "trailing": false,
    "undef": false,
    "unused": false,
    "globals": {
    "jQuery": true,
    "console": true,
    "module": true,
    "document": true
    },
    "-W015": true,
    "-W044": true,
    "-W086": true,
    "-W093": true
    }