Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-11 | 整理代码 | 最萌小汐 | |
2024-05-11 | 支持转到实现 | 最萌小汐 | |
2024-05-11 | 暂存-转到实现 | 最萌小汐 | |
2024-04-23 | Add globalsRegex to diagnostics | Bruno Carvalho | |
Improve checkIsUndefinedGlobal to avoid unecessary checks and tables | |||
2024-04-20 | Run diagnostics on unopened files when explicitly requested by the user | Paul Emmerich | |
If I explicitly click on "Diagnose workspace" I would expect it to show me *all* the diagnostics similar to how --check in a CI would check my project. This makes it easier for users to check their whole workspace after making changes to some library or core function that potentially affects a large number of files that are usually only checked once opened. | |||
2024-04-18 | `merge` 改叫 `partial` | 最萌小汐 | |
2024-04-18 | 如果有 merge 属性,则跳过 `duplicate-doc-alias` 检查 | 最萌小汐 | |
2024-04-17 | 修正 `discard-returns` 对条件的误报 | 最萌小汐 | |
2024-03-25 | Detect discard-returns in all block types | Jakub | |
2024-02-26 | Merge pull request #2532 from fesily/automatic-infer-function-param-type | 最萌小汐 | |
add infer function param type | |||
2024-02-24 | Desc/rawdesc for vararg expressions in JSON output. | Andreas | |
2024-02-23 | fix warn | fesily | |
2024-02-21 | add infer function param type | fesily | |
2024-01-24 | fix rename in library | 最萌小汐 | |
2024-01-18 | Never sematic virtual ast and comment | fesily | |
2024-01-10 | Merge pull request #2464 from Varriount/patch-1 | 最萌小汐 | |
Pad `return` type annotations when required. | |||
2024-01-05 | `FIX` rename to unicode with `Lua.runtime.unicodeName = true` | 最萌小汐 | |
2023-12-29 | Pad `return` type annotations when required. | Clay Sweetser | |
Place a space between `---` and `@return` when generating documentation for a function on a line like `--- `. This mimics how `@param` documentation is generated. | |||
2023-11-25 | Add raw descriptions | NyakoFox | |
2023-11-14 | fix type infer in overload | 最萌小汐 | |
2023-09-25 | feat: support param snippets with space | Lewis Russell | |
Currently LuaLS will expand: ```lua ---<??> local x = function (x, y) end ``` with: ```lua ---comment ---@param x any ---@param y any local x = function (x, y) end ``` This change adds a variation of this snippet to expand: ```lua --- <??> local x = function (x, y) end ``` with: ```lua --- comment --- @param x any --- @param y any local x = function (x, y) end ``` | |||
2023-08-23 | support `---@class (exact)` | 最萌小汐 | |
#1990 | |||
2023-08-22 | fix wrong `missing-fields` with union types | 最萌小汐 | |
fix #2252 | |||
2023-08-16 | supports `---@enum (key)` | 最萌小汐 | |
2023-08-14 | Ignore cast-local-type diagnostic for `_` local | Ross Williams | |
The `unused-local` diagnostic already hard-codes to exclude `_`. `cast-local-type` should also ignore `_` variables, to avoid warnings in, for example, nested loops like: ```lua for _, list in ipairs(lists) do for _, item in ipairs(list) do _, result = pcall(...) end end ``` | |||
2023-08-14 | check `doc.field` | 最萌小汐 | |
#1990 | |||
2023-08-14 | also check `doc.type.table` | 最萌小汐 | |
2023-08-14 | new diag: `inject-field` | 最萌小汐 | |
#1990 | |||
2023-08-11 | stash | 最萌小汐 | |
2023-08-03 | function may not have a name | 最萌小汐 | |
2023-07-25 | fix #2214 | 最萌小汐 | |
2023-07-21 | fix `missing-fields` | 最萌小汐 | |
2023-07-21 | fix missing fields | 最萌小汐 | |
2023-07-21 | 添加翻译 | 最萌小汐 | |
2023-07-21 | fix | 最萌小汐 | |
2023-07-20 | new diagnostic: `missing-fields` | 最萌小汐 | |
2023-07-20 | improve completion label of table fields | 最萌小汐 | |
2023-07-19 | sort results of completion | 最萌小汐 | |
2023-07-18 | Merge pull request #2177 from sewbacca/feature/shortcut-autorequire | 最萌小汐 | |
[Feature] Add action to autorequire undefined globals | |||
2023-07-17 | Resolve formatting | Sewbacca | |
Resolve member naming | |||
2023-07-17 | Added tests | Sewbacca | |
2023-07-17 | Extracted undefined global check | Sewbacca | |
2023-07-06 | signature: narrow by inputed literal | 最萌小汐 | |
2023-06-29 | exclude `_` | 最萌小汐 | |
2023-06-28 | Adapt incomplete-signature-doc to warn about incomplete, not missing docs (#9) | AndreaWalchshoferSCCH | |
Previously, the diagnostic `incomplete-signature-doc` is ignoring fully undocumented functions - but is already triggered by a simple comment. This turns out to be impractical in a few cases, as it also forces a full documentation of functions that should just be annotated with `---@async` (and is therefore not yet fully compatible with `await-in-sync`) So this PR adapts the diagnostic to only warn about **incomplete** signature docs, so it requires at least one `@param` or `@return` annotation before a warning is given. (Otherwise, it would be a missing signature doc, and there's separate diagnostics about that...) | |||
2023-06-27 | Added crossfile testcase | Sewbacca | |
Improved eq error message in test/code_action/init.lua Uses core.diagnostics.undefined-global | |||
2023-06-26 | check nil | 最萌小汐 | |
2023-06-23 | Fix tests failing | Sewbacca | |
2023-06-23 | Added concept of action autorequire | Sewbacca | |
2023-06-14 | check nil | 最萌小汐 | |