Skip to content

Commit

Permalink
fix(no-undefined-types): allow never
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Dec 17, 2021
1 parent fac3f20 commit 6af811b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/noUndefinedTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const extraTypes = [
'null', 'undefined', 'void', 'string', 'boolean', 'object',
'function', 'symbol',
'number', 'bigint', 'NaN', 'Infinity',
'any', '*',
'any', '*', 'never',
'this', 'true', 'false',
'Array', 'Object', 'RegExp', 'Date', 'Function',
];
Expand Down

0 comments on commit 6af811b

Please sign in to comment.