Skip to content
Snippets Groups Projects
Select Git revision
  • 81031984a6714feffc8b1a8e523988ab83f56515
  • master default protected
2 results

.jshintrc

Blame
  • user avatar
    Vincent Petry authored
    - Also fixes a few JSHint warnings in files app
    - Added "global" comment on top of files app to suppress warning and
      also inform devs about what globals are use
    d36a2ff9
    History
    .jshintrc 442 B
    {
    	"camelCase": true,
    	"eqeqeq": true,
    	"immed": true,
    	"latedef": false,
    	"noarg": true,
    	"nonbsp": true,
    	"undef": true,
    	"unused": true,
    	"trailing": true,
    	"maxparams": 5,
    	"curly": true,
    	"jquery": true,
    	"maxlen": 80,
    	"indent": 4,
    	"browser": true,
    	"globals": {
    		"console": true,
    		"it": true,
    		"itx": true,
    		"expect": true,
    		"describe": true,
    		"beforeEach": true,
    		"afterEach": true,
    		"sinon": true,
    		"fakeServer": true
    	}
    }