{ // JSHint Default Configuration File (as on JSHint website) // See http://jshint.com/docs/ for more details "maxerr": 50, // {int} Maximum error before stopping // Enforcing "camelcase": false, // true: Identifiers must be in camelCase "curly": true, // true: Require {} for every new block or scope "eqeqeq": true, // true: Require triple equals (===) for comparison "undef": true, // true: Require variables/functions to be defined before being used // Relaxing "boss": false, // true: Tolerate assignments where comparisons would be expected "loopfunc": false, // true: Tolerate functions being defined in loops "sub": true, // true: Tolerate using `[]` notation when it can still be expressed in dot notation // Environments "browser": true, // Web Browser (window, document, etc) "jasmine": true, // Jasmine "jquery": true, // jQuery "nonstandard": true, // Widely adopted globals (escape, unescape, etc) "devel": true, // Custom Globals "globals": { "siteConfig":true, "AppConfig": true, "angular": true, "moment": true, "Translations": true, "Multimocks": true, "AppConfigMock": true, "SwitchFormDataBuilder": true, "switchFormValues": true, "MixpanelMock":true, "UserDataMock":true, "inject": true } }