Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-11-08 | Revert "Fix backwards compatability with `Lua.workspace.checkThirdParty`" | Rebecca Turner | |
This reverts commit 13a24eef2329cdc19008421666af51e50d6c0889. | |||
2023-11-07 | Fix backwards compatability with `Lua.workspace.checkThirdParty` | Rebecca Turner | |
I attempted to maintain backwards compatability in #2354 but didn't fully understand the config type system. | |||
2023-10-25 | update bee.net | 最萌小汐 | |
#2382 | |||
2023-10-24 | update bee.net | 最萌小汐 | |
2023-10-24 | update socket mode | 最萌小汐 | |
#2382 | |||
2023-10-18 | Make `workspace.checkThirdParty` a string enum | Rebecca Turner | |
This lets you skip the "apply third party library to workspace configuration" prompt. | |||
2023-10-18 | Merge pull request #2364 from 9999years/check-out-path | 最萌小汐 | |
Add `--check_out_path` CLI argument | |||
2023-10-10 | Add `--check_out_path` CLI argument | Rebecca Turner | |
This allows customizing where the diagnostic JSON file is saved. | |||
2023-10-10 | update utility | 最萌小汐 | |
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-31 | fix #2299 | 最萌小汐 | |
2023-08-23 | add guide | 最萌小汐 | |
2023-08-23 | support `---@class (exact)` | 最萌小汐 | |
#1990 | |||
2023-08-22 | fix wrong `missing-fields` with union types | 最萌小汐 | |
fix #2252 | |||
2023-08-21 | fix | 最萌小汐 | |
2023-08-16 | supports `---@enum (key)` | 最萌小汐 | |
2023-08-15 | don't diagnose git uri | 最萌小汐 | |
fix #2267 | |||
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 | fix warning | 最萌小汐 | |
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-11 | commandline parameter `--force-accept-workspace` | 最萌小汐 | |
resolve #2159 | |||
2023-08-11 | fix stack overflow | 最萌小汐 | |
2023-08-11 | check nil | 最萌小汐 | |
2023-08-11 | local uses `nil` at least | 最萌小汐 | |
fix #2155 | |||
2023-08-11 | support `---@type` and `--[[@as]]` for return | 最萌小汐 | |
resolve #2144 | |||
2023-08-10 | support `@type` for `return` | 最萌小汐 | |
#2144 | |||
2023-08-10 | enable `as` table | 最萌小汐 | |
#2144 | |||
2023-08-09 | fix | 最萌小汐 | |
2023-08-09 | fix wrong hover and signature for method | 最萌小汐 | |
with varargs and overloads | |||
2023-08-03 | function may not have a name | 最萌小汐 | |
2023-08-01 | don't show constructor in hover | 最萌小汐 | |
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-20 | fix visible | 最萌小汐 | |
2023-07-19 | sort results of completion | 最萌小汐 | |
2023-07-19 | check visible recursive | 最萌小汐 | |
fix #2145 | |||
2023-07-19 | speed up tests | 最萌小汐 | |
2023-07-19 | remove fixed code | 最萌小汐 | |
see http://www.lua.org/bugs.html#5.4.4-7 | |||
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 | |