We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ac72a commit 4757e9dCopy full SHA for 4757e9d
1 file changed
etc/eslint/rules/typescript.js
@@ -2028,15 +2028,15 @@ rules[ 'no-plusplus' ] = [ 'error', {
2028
}];
2029
2030
/**
2031
-* Disallows redeclaring variables.
+* Disable rule disallowing redeclaring variables.
2032
*
2033
* @name no-redeclare
2034
* @memberof rules
2035
* @type {string}
2036
-* @default 'error'
+* @default 'off'
2037
* @see [no-redeclare]{@link https://eslint.org/docs/rules/no-redeclare}
2038
*/
2039
-rules[ 'no-redeclare' ] = 'error';
+rules[ 'no-redeclare' ] = 'off'; // NOTE: disabled due to erroneous lint error when declaring overloaded function definitions
2040
2041
2042
* Disallows importing specific modules.
0 commit comments