Skip to content

Commit

Permalink
Updated settings to use lua LS for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
evil-morfar committed Sep 4, 2024
1 parent 704d189 commit 82d7d1b
Showing 1 changed file with 55 additions and 15 deletions.
70 changes: 55 additions & 15 deletions .vscode/settings.json
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"
]
}

0 comments on commit 82d7d1b

Please sign in to comment.