Skip to content

Commit

Permalink
feat(check-types): Add symbol and bigint to native types (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 authored and l1bbcsg committed Aug 8, 2019
1 parent c3b56c6 commit 23846fc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .README/rules/check-types.md
Expand Up @@ -9,7 +9,9 @@ undefined
null
boolean
number
bigint
string
symbol
object
Array
Function
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -1565,7 +1565,9 @@ undefined
null
boolean
number
bigint
string
symbol
object
Array
Function
Expand Down
2 changes: 2 additions & 0 deletions src/rules/checkTypes.js
Expand Up @@ -7,7 +7,9 @@ const strictNativeTypes = [
'null',
'boolean',
'number',
'bigint',
'string',
'symbol',
'object',
'Array',
'Function',
Expand Down

0 comments on commit 23846fc

Please sign in to comment.