Skip to content

Commit d4beaea

Browse files
author
Christian Wesselhoeft
committed
Unsuppress warnings for things that don't appear in the codebase.
1 parent 428505f commit d4beaea

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

.jshintrc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,17 @@
2525
"freeze" : true, // Prohibits overwriting prototypes of native objects such as Array and Date.
2626
"funcscope" : true, // This option suppresses warnings about declaring variables inside of control structures while accessing them later from the outside.
2727
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
28-
"iterator" : true, // This option suppresses warnings about the __iterator__ property.
2928
"latedef" : true, // Prohibit variable use before definition.
3029
"laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
3130
"laxcomma" : false, // This option suppresses warnings about comma-first coding style.
3231
"loopfunc" : true, // Allow functions to be defined within loops.
33-
"multistr" : true, // This option suppresses warnings about multi-line strings.
3432
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`.
3533
"notypeof" : false, // This option suppresses warnings about invalid typeof operator values.
36-
"proto" : true, // This option suppresses warnings about the __proto__ property.
37-
"scripturl" : true, // Tolerate script-targeted URLs.
3834
"shadow" : true, // Allows re-define variables later in code e.g. `var x=1; x=2;`.
3935
"smarttabs" : false, // This option suppresses warnings about mixed tabs and spaces when the latter are used for alignmnent only.
4036
"supernew" : false, // Tolerate `new function () { ... };` and `new Object;`.
4137
"undef" : true, // Require all non-global variables be declared before they are used.
4238
"unused" : true, // This option warns when you define and never use your variables.
43-
"validthis" : true, // This option suppresses warnings about possible strict violations when the code is running in strict mode and you use this in a non-constructor function.
4439

4540
// Styling
4641
"indent" : 4, // Specify indentation spacing

0 commit comments

Comments
 (0)