-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.luarc.json
More file actions
82 lines (82 loc) · 2.55 KB
/
Copy path.luarc.json
File metadata and controls
82 lines (82 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"workspace.library": [
".types",
"Libs"
],
"runtime.version": "Lua 5.1",
"hint.enable": false,
"workspace.ignoreDir": [
".github",
".idea",
".types",
"Libs",
"releases"
],
"diagnostics.globals": [
"------------------ WoW API --------------------",
"C_Seasons",
"CharacterHeadSlot",
"CharacterNeckSlot",
"CharacterShoulderSlot",
"CharacterBackSlot",
"CharacterChestSlot",
"CharacterWristSlot",
"CharacterHandsSlot",
"CharacterWaistSlot",
"CharacterLegsSlot",
"CharacterFeetSlot",
"CharacterFinger0Slot",
"CharacterFinger1Slot",
"CharacterTrinket0Slot",
"CharacterTrinket1Slot",
"CharacterMainHandSlot",
"CharacterSecondaryHandSlot",
"CharacterRangedSlot",
"GearManagerDialog",
"GetAddOnInfo",
"InspectHeadSlot",
"InspectNeckSlot",
"InspectShoulderSlot",
"InspectBackSlot",
"InspectChestSlot",
"InspectWristSlot",
"InspectHandsSlot",
"InspectWaistSlot",
"InspectLegsSlot",
"InspectFeetSlot",
"InspectFinger0Slot",
"InspectFinger1Slot",
"InspectTrinket0Slot",
"InspectTrinket1Slot",
"InspectMainHandSlot",
"InspectPaperDollFrame",
"InspectSecondaryHandSlot",
"InspectRangedSlot",
"SlashCmdList",
"PaperDollItemsFrame",
"------------------ External addons --------------------",
"------------------ ECS globals --------------------",
"ECSLoader"
],
"format": {
"defaultConfig": {
"indent_style": "space",
"indent_size": "4",
"continuation_indent": "4",
"quote_style": "double",
"end_of_line": "lf",
"max_line_length": "160",
"align_array_table": "false",
"align_function_params": "false",
"align_continuous_assign_statement": "false",
"align_continuous_inline_comment": "false",
"align_continuous_rect_table_field": "false",
"space_around_table_field_list": "false",
"space_before_open_square_bracket": "false",
"space_inside_function_call_parentheses": "false",
"space_inside_function_param_list_parentheses": "false",
"space_inside_square_brackets": "false"
}
}
}