Skip to content

Commit 19c9305

Browse files
committed
fixes #36
1 parent a6fe3ce commit 19c9305

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

es5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module.exports = {
9191
'no-shadow-restricted-names': 'error',
9292
'no-undef': 'error', // default
9393
'no-undef-init': 'error',
94-
'no-undefined': 'error',
94+
'no-undefined': 'off', // https://github.com/htmlacademy/eslint-config-htmlacademy/issues/36
9595

9696
// Node.js and CommonJS
9797
// http://eslint.org/docs/rules/#nodejs-and-commonjs

es6.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ module.exports = {
2020

2121
'object-shorthand': [`error`, `always`, {'avoidQuotes': true}],
2222

23-
'no-undefined': 'off', // https://github.com/htmlacademy/eslint-config-htmlacademy/issues/36
24-
2523
'quotes': [`error`, `backtick`] // https://github.com/htmlacademy/eslint-config-htmlacademy/issues/4
2624
}
2725
};

0 commit comments

Comments
 (0)