Merge pull request #484 from aaronjensen/patch-2

Add no-undef
This commit is contained in:
Jake Teton-Landis
2015-08-23 23:20:45 -07:00

View File

@@ -40,6 +40,7 @@ module.exports = {
*/
'no-shadow': 2, // http://eslint.org/docs/rules/no-shadow
'no-shadow-restricted-names': 2, // http://eslint.org/docs/rules/no-shadow-restricted-names
'no-undef': 2, // http://eslint.org/docs/rules/no-undef
'no-unused-vars': [2, { // http://eslint.org/docs/rules/no-unused-vars
'vars': 'local',
'args': 'after-used'