yannickcr/gulp-jscpd

View on GitHub
.jshintrc

Summary

Maintainability
Test Coverage
{
  "node"     : true,
  "browser"  : true,
  "esnext"   : true,
  "bitwise"  : true,
  "curly"    : true,
  "eqeqeq"   : true,
  "immed"    : true,
  "indent"   : 2,
  "latedef"  : true,
  "newcap"   : true,
  "noarg"    : true,
  "quotmark" : "single",
  "regexp"   : true,
  "undef"    : true,
  "unused"   : true,
  "strict"   : true,
  "trailing" : true,
  "globals"  : {
    "after"     : true,
    "afterEach" : true,
    "before"    : true,
    "beforeEach": true,
    "describe"  : true,
    "inject"    : true,
    "expect"    : true,
    "it"        : true,
    "xit"       : true
  }
}