File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 17
17
"noarg" : true , // true: Prohibit use of `arguments.caller` and `arguments.callee`
18
18
"noempty" : true , // true: Prohibit use of empty blocks
19
19
"nonbsp" : true , // true: Prohibit "non-breaking whitespace" characters.
20
- "nonew" : false , // true: Prohibit use of constructors for side-effects (without assignment)
20
+ "nonew" : true , // true: Prohibit use of constructors for side-effects (without assignment)
21
21
"plusplus" : false , // true: Prohibit use of `++` and `--`
22
22
"quotmark" : true , // Quotation mark consistency:
23
23
// false : do nothing (default)
24
24
// true : ensure whatever is used is consistent
25
25
// "single" : require single quotes
26
26
// "double" : require double quotes
27
27
"undef" : true , // true: Require all non-global variables to be declared (prevents global leaks)
28
- "unused" : true , // Unused variables:
28
+ "unused" : " true" , // Unused variables:
29
29
// true : all variables, last function parameter
30
30
// "vars" : all variables only
31
31
// "strict" : all variables, all function parameters
You can’t perform that action at this time.
0 commit comments