Skip to content

Commit e97a69e

Browse files
committed
Disable the ESLint no-redeclare rule
1 parent 4736871 commit e97a69e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@ module.exports = {
245245

246246
// The rule is deprecated in ESLint and it doesn't fully make sense for TypeScript.
247247
// TODO: Remove this when the rule is removed from XO.
248-
'valid-jsdoc': 'off'
248+
'valid-jsdoc': 'off',
249+
250+
// Disabled because of https://github.com/typescript-eslint/typescript-eslint/issues/60
251+
'no-redeclare': 'off'
249252
}
250253
};

0 commit comments

Comments
 (0)