diff --git a/ivette/.eslintrc.js b/ivette/.eslintrc.js index ebdbbb656e9a0007b96ff7f378c22fd3c3401f78..3bd729783345e5d290e08739221abdd77e8748d0 100644 --- a/ivette/.eslintrc.js +++ b/ivette/.eslintrc.js @@ -77,5 +77,7 @@ module.exports = { "react/destructuring-assignment": "off", // Allow console errors and warnings "no-console": ["error", { allow: ["warn", "error"] }], + // Disallow the use of var in favor of let and const + "no-var": "error", } };