aboutsummaryrefslogtreecommitdiffstats
path: root/.jscsrc
blob: 5d6dfd77e6e223da45312be4a9c0f0bd6e647068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"preset": "jquery",

	// This is currently unenforcable see https://github.com/jscs-dev/node-jscs/issues/1686
	"requireCapitalizedComments": null,

	// Until we drop IE8 this prevents things like warning on float keyword
	"es3": true,

	// We want to output all errors
	"maxErrors": 1000000,

	// Ref https://github.com/jquery/contribute.jquery.org/issues/80#issuecomment-45253460
	"maximumLineLength": null
}