Skip to content

Instantly share code, notes, and snippets.

@Amitesh
Created February 21, 2017 06:43
Show Gist options
  • Select an option

  • Save Amitesh/96be7751ef123c68ff30259e01e4e8d0 to your computer and use it in GitHub Desktop.

Select an option

Save Amitesh/96be7751ef123c68ff30259e01e4e8d0 to your computer and use it in GitHub Desktop.

Revisions

  1. Amitesh created this gist Feb 21, 2017.
    36 changes: 36 additions & 0 deletions jshint-settings.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,36 @@
    {
    "bitwise": true,
    "camelcase": true,
    "curly": true,
    "eqeqeq": true,
    "eqnull": true,
    "forin": false,
    "freeze": false,
    "immed": true,
    "indent": 2,
    "latedef": "nofunc",
    "newcap": true,
    "noarg": true,
    "noempty": true,
    "nonbsp": true,
    "nonew": true,
    "plusplus": false,
    "quotmark": "single",
    "undef": true,
    "unused": true,
    "strict": false,
    "maxparams": 20,
    "maxdepth": 5,
    "maxlen": 120,
    "esnext": true,
    "jasmine": true,
    "browserify": true,
    "devel": true,
    "browser": true,
    "jquery": true,
    "globals": {
    "angular": false,
    "document": false,
    "require": false
    }
    }