-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated settings to use lua LS for linting
- Loading branch information
1 parent
704d189
commit 82d7d1b
Showing
1 changed file
with
55 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,64 @@ | ||
{ | ||
"todo-tree.tree.showCountsInTree": false, | ||
"Lua.runtime.path": [ | ||
"${workspace}/__tests/?.lua" | ||
], | ||
"Lua.runtime.version": "Lua 5.1", | ||
"Lua.runtime.builtin": { | ||
"basic": "disable", | ||
"debug": "disable", | ||
"io": "disable", | ||
"math": "disable", | ||
"os": "disable", | ||
"package": "disable", | ||
"string": "disable", | ||
"table": "disable", | ||
"utf8": "disable" | ||
}, | ||
|
||
"Lua.workspace.library": [ | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.4\\Annotations" | ||
"${3rd}/luassert/library", | ||
"~/AppData/Roaming/Code/User/globalStorage/sumneko.lua/addonManager/addons/luassert/module/library", | ||
"~/AppData/Roaming/Code/User/globalStorage/sumneko.lua/addonManager/addons/busted/module/library", | ||
"${3rd}/lfs/library", | ||
"~\\.vscode\\extensions\\sumneko.lua-3.10.5-win32-x64\\server\\meta\\Lua 5.1 en-us utf8", | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.5\\Annotations\\Data", | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.5\\Annotations\\Interface", | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.5\\Annotations\\Libraries", | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.5\\Annotations\\Type", | ||
"~\\.vscode\\extensions\\ketho.wow-api-0.17.5\\Annotations\\Widget" | ||
], | ||
"Lua.diagnostics.globals": [ | ||
"lfs" | ||
"lfs", | ||
"GUILD_BANK_LOG_TIME", | ||
"Settings", | ||
"SettingsPanel", | ||
"CLASS_ICON_TCOORDS", | ||
"CreateSimpleTextureMarkup", | ||
"FindValueInTableIf", | ||
"ITEM_BNETACCOUNTBOUND", | ||
"PLAYER_LIST_DELIMITER", | ||
"ITEM_ACCOUNTBOUND", | ||
"LIST_DELIMITER", | ||
"INT_SPELL_DURATION_SEC", | ||
"INT_SPELL_DURATION_HOURS", | ||
"INT_SPELL_DURATION_MIN", | ||
"ChatFrame1", | ||
"ALL_CLASSES", | ||
"ExportUtil", | ||
"PlayerUtil", | ||
"escapePatternSymbols", | ||
"ChatFrame_AddMessageEventFilter", | ||
"BIND_TRADE_TIME_REMAINING", | ||
"ITEM_SOULBOUND", | ||
"TIME_UNIT_DELIMITER", | ||
"ReloadUI", | ||
"RELIC_TOOLTIP_TYPE", | ||
"ITEM_MOD_STRENGTH_SHORT", | ||
"MELEE", | ||
"ITEM_MOD_AGILITY_SHORT", | ||
"ITEM_MOD_INTELLECT_SHORT", | ||
"TANK", | ||
"HEALER", | ||
"DAMAGER", | ||
"BLOCK", | ||
"PARRY", | ||
"RANGED" | ||
], | ||
"Lua.diagnostics.disable": [ | ||
"undefined-doc-name", | ||
"missing-parameter" | ||
], | ||
|
||
"Lua.workspace.ignoreDir": [ | ||
".vscode", | ||
"__tests" | ||
] | ||
} |