|
25 | 25 | "freeze" : true, // Prohibits overwriting prototypes of native objects such as Array and Date. |
26 | 26 | "funcscope" : true, // This option suppresses warnings about declaring variables inside of control structures while accessing them later from the outside. |
27 | 27 | "immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );` |
28 | | - "iterator" : true, // This option suppresses warnings about the __iterator__ property. |
29 | 28 | "latedef" : true, // Prohibit variable use before definition. |
30 | 29 | "laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons. |
31 | 30 | "laxcomma" : false, // This option suppresses warnings about comma-first coding style. |
32 | 31 | "loopfunc" : true, // Allow functions to be defined within loops. |
33 | | - "multistr" : true, // This option suppresses warnings about multi-line strings. |
34 | 32 | "noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`. |
35 | 33 | "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. |
38 | 34 | "shadow" : true, // Allows re-define variables later in code e.g. `var x=1; x=2;`. |
39 | 35 | "smarttabs" : false, // This option suppresses warnings about mixed tabs and spaces when the latter are used for alignmnent only. |
40 | 36 | "supernew" : false, // Tolerate `new function () { ... };` and `new Object;`. |
41 | 37 | "undef" : true, // Require all non-global variables be declared before they are used. |
42 | 38 | "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. |
44 | 39 |
|
45 | 40 | // Styling |
46 | 41 | "indent" : 4, // Specify indentation spacing |
|
0 commit comments