Skip to content

Commit

Permalink
Readd settings.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicKevinFerm committed Mar 20, 2024
1 parent a7baf3f commit efb24bb
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ ui/core/index.ts
ui/*/*/index.html
.dirstamp
.vscode/launch.json
.vscode/settings.json
# IDE folders
.idea
.history
Expand Down
105 changes: 105 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.validate": ["javascript", "typescript"],
"eslint.nodePath": "./node_modules",
"eslint.workingDirectories": ["."],
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"[javascript][javascriptreact][typescript][typescriptreact][scss][html]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
}
},
"json.schemas": [
{
"fileMatch": ["*.apl.json"],
"url": "./schemas/apl_rotation.schema.json"
},
{
"fileMatch": ["*.gear.json"],
"url": "./schemas/gear.schema.json"
}
],
"Lua.diagnostics.globals": [
"FONT_COLOR_CODE_CLOSE",
"SELECTED_CHAT_FRAME",
"DEFAULT_CHAT_FRAME",
"InterfaceOptions_AddCategory",
"NORMAL_FONT_COLOR",
"GameFontNormal",
"GameFontHighlight",
"ACCEPT",
"CANCEL",
"GameFontHighlightLarge",
"GameFontHighlightSmall",
"SlashCmdList",
"hash_SlashCmdList",
"NORMAL_FONT_COLOR_CODE",
"CLOSE",
"PanelTemplates_TabResize",
"PanelTemplates_SetDisabledTabState",
"PanelTemplates_SelectTab",
"PanelTemplates_DeselectTab",
"SetDesaturation",
"ColorPickerFrame",
"OpacitySliderFrame",
"ChatFontNormal",
"OKAY",
"NOT_BOUND",
"NUM_BAG_SLOTS",
"NUM_BANKBAGSLOTS",
"InterfaceOptionsFrame_OpenToCategory",
"BANK_CONTAINER",
"CreateFrame",
"geterrorhandler",
"IsLoggedIn",
"PlaySound",
"GetRealmName",
"UnitName",
"UnitClass",
"UnitRace",
"UnitFactionGroup",
"GetCurrentRegion",
"GetLocale",
"C_Container",
"GetTalentInfo",
"UnitFullName",
"GetPlayerInfoByGUID",
"UnitLevel",
"tInvert",
"GetItemInfo",
"IsEquippableItem",
"UnitGUID",
"GetSpellInfo",
"GetInventorySlotInfo",
"GetInventoryItemLink",
"max",
"min",
"ceil",
"BackdropTemplateMixin",
"floor",
"GetCursorInfo",
"ClearCursor",
"hooksecurefunc",
"GetMacroInfo",
"IsShiftKeyDown",
"IsControlKeyDown",
"IsAltKeyDown",
"issecurevariable",
"GetTime",
"C_Timer",
"format",
"gsub",
"strfind",
"strsub",
"strchar",
"strbyte",
"tinsert",
"UIParent"
],
"[go]": {
"editor.defaultFormatter": "golang.go"
}
}

0 comments on commit efb24bb

Please sign in to comment.