Skip to content
Snippets Groups Projects
.jshintrc 586 B
Newer Older
Vincent Petry's avatar
Vincent Petry committed
{
	"camelcase": true,
Vincent Petry's avatar
Vincent Petry committed
	"eqeqeq": true,
	"immed": true,
	"latedef": false,
	"noarg": true,
	"nonbsp": true,
	"undef": true,
	"unused": true,
	"trailing": true,
	"maxparams": 5,
	"curly": true,
	"jquery": true,
	"maxlen": 120,
Vincent Petry's avatar
Vincent Petry committed
	"indent": 4,
	"browser": true,
Vincent Petry's avatar
Vincent Petry committed
	"globals": {
		"console": true,
		"it": true,
Vincent Petry's avatar
Vincent Petry committed
		"expect": true,
		"describe": true,
		"beforeEach": true,
		"afterEach": true,
		"sinon": true,
		"fakeServer": true,
		"OCA": true,
		"OCP": true,
		"n": true,
		"escapeHTML": true,
		"Promise": true
Vincent Petry's avatar
Vincent Petry committed
	}
}