diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-10-11 10:48:36 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-10-11 10:48:36 +0800 |
commit | 9f54935bc1447c07a29a3fc4357a0dcbafd36a37 (patch) | |
tree | 95d09a686e9d699ac6a585a360634e2aeeb1b090 /doc/zh-cn | |
parent | 3a666c7a77f51b951985ceb57467cc87f00da3cb (diff) | |
download | lua-language-server-9f54935bc1447c07a29a3fc4357a0dcbafd36a37.zip |
update doc and locale
Diffstat (limited to 'doc/zh-cn')
-rw-r--r-- | doc/zh-cn/config.md | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/zh-cn/config.md b/doc/zh-cn/config.md index bf33501d..26b54ad5 100644 --- a/doc/zh-cn/config.md +++ b/doc/zh-cn/config.md @@ -258,6 +258,7 @@ Array<string> * ``"global-in-nil-env"`` * ``"incomplete-signature-doc"`` * ``"index-in-func-name"`` +* ``"inject-field"`` * ``"invisible"`` * ``"jump-local-scope"`` * ``"keyword"`` @@ -505,6 +506,7 @@ object<string, string> * assign-type-mismatch * cast-local-type * cast-type-mismatch + * inject-field * need-check-nil * param-type-mismatch * return-type-mismatch @@ -633,6 +635,7 @@ object<string, string> * assign-type-mismatch * cast-local-type * cast-type-mismatch + * inject-field * need-check-nil * param-type-mismatch * return-type-mismatch @@ -738,7 +741,7 @@ object<string, string> ```jsonc { /* - 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` + 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` */ "ambiguity-1": "Any", /* @@ -826,6 +829,7 @@ object<string, string> Incomplete @param or @return annotations for functions. */ "incomplete-signature-doc": "None", + "inject-field": "Opened", /* Enable diagnostics for accesses to fields which are invisible. */ @@ -1006,7 +1010,7 @@ object<string, string> ```jsonc { /* - 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` + 优先级歧义,如:`num or 0 + 1`,推测用户的实际期望为 `(num or 0) + 1` */ "ambiguity-1": "Warning", /* @@ -1094,6 +1098,7 @@ object<string, string> Incomplete @param or @return annotations for functions. */ "incomplete-signature-doc": "Warning", + "inject-field": "Warning", /* Enable diagnostics for accesses to fields which are invisible. */ @@ -1659,7 +1664,7 @@ string # misc.parameters -VSCode中启动语言服务时的[命令行参数](https://luals.github.io/wiki/usage/#arguments)。 +VSCode中启动语言服务时的[命令行参数](https://luals.github.io/wiki/usage#arguments)。 ## type @@ -2290,4 +2295,4 @@ Array<string> ```jsonc [] -``` +```
\ No newline at end of file |