ESLint: Add "no-undef" rule.

This commit is contained in:
David Braun 2018-03-28 13:36:05 -04:00
parent c71312c22f
commit 9cf3cb65e4
No known key found for this signature in database
GPG key ID: 87EC41ADF710B7E2

View file

@ -8,6 +8,7 @@ module.exports = {
ecmaVersion: 2017
},
rules: {
"no-undef": "error",
"no-unused-vars": "warn"
}
};