grunt ^0.4.5 → ^1.0.1 grunt-cli ^0.1.13 → ^1.2.0 grunt-contrib-jshint ^0.8.0 → ^1.0.0 grunt-contrib-qunit ^0.5.2 → ^1.2.0
36 lines
488 B
Plaintext
36 lines
488 B
Plaintext
{
|
|
// Enforcing
|
|
"bitwise": true,
|
|
"camelcase": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"forin": false,
|
|
"immed": true,
|
|
"latedef": "nofunc",
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"onevar": true,
|
|
"quotmark": "single",
|
|
"regexp": false,
|
|
"strict": true,
|
|
"trailing": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
// Relax
|
|
"laxbreak": true,
|
|
"multistr": true,
|
|
"smarttabs": true,
|
|
|
|
// Environment
|
|
"browser": true,
|
|
|
|
"predef": [
|
|
"_",
|
|
"jQuery",
|
|
"QUnit"
|
|
]
|
|
}
|