Throw warnings for unused and undefined variables

This commit is contained in:
Juan Cruz Viotti 2016-01-24 19:26:24 -04:00
parent 113a3d2d14
commit 284f9087b2

View File

@ -44,6 +44,8 @@
"strict" : true, // Require `use strict` pragma in every file.
"trailing" : true, // Prohibit trailing whitespaces.
"maxlen" : 130, // Limit line length.
"unused" : true, // Prohibit unused variables.
"undef" : true, // Prohibit undefined variables.
// == Relaxing Options ================================================
//