diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-07-01 16:10:26 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-07-01 16:10:33 +0800 |
commit | 87e0a180f97cd6bc31909b60228f1148c0289529 (patch) | |
tree | da72f156113a156b960018ec352196823fe28649 /doc/pt-br/config.md | |
parent | cbcac3afc40268eae82a41a82248d912b1cfeeb6 (diff) | |
download | lua-language-server-87e0a180f97cd6bc31909b60228f1148c0289529.zip |
#1260 `type.weakNilCheck`
Diffstat (limited to 'doc/pt-br/config.md')
-rw-r--r-- | doc/pt-br/config.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/pt-br/config.md b/doc/pt-br/config.md index 55604b55..9cbefc2b 100644 --- a/doc/pt-br/config.md +++ b/doc/pt-br/config.md @@ -1472,6 +1472,25 @@ boolean false ``` +# type.weakNilCheck + +When checking the type of union type, ignore the `nil` in it. + +When this setting is `false`, the `number|nil` type cannot be assigned to the `number` type. It can be with `true`. + + +## type + +```ts +boolean +``` + +## default + +```jsonc +false +``` + # type.weakUnionCheck Once one subtype of a union type meets the condition, the union type also meets the condition. |