-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.luacheckrc
68 lines (63 loc) · 1.09 KB
/
.luacheckrc
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
std = 'lua51'
max_line_length = 180
exclude_files = {
'Libs/',
'.luacheckrc'
}
ignore = {}
globals = {
-- own globals
'SmoothyPlates',
-- lib globals
'LibStub',
-- misc lua
'format',
'strrep',
-- wow api
'UnitIsEnemy',
'GetSpellTexture',
'GetTime',
'C_NamePlate',
'UnitIsUnit',
'UnitAura',
'CreateFrame',
'GetSpellInfo',
'GetPhysicalScreenSize',
'SetCVar',
'hooksecurefunc',
'UnitIsPlayer',
'UnitPlayerControlled',
'UnitCreatureType',
'UnitName',
'UnitNameplateShowsWidgetsOnly',
'ReloadUI',
'UIParent',
'SetRaidTargetIconTexture',
'UnitGUID',
'UnitHealthMax',
'UnitHealth',
'UnitClass',
'UnitIsPlayer',
'UnitSelectionColor',
'RAID_CLASS_COLORS',
'PowerBarColor',
'GetUnitName',
'UnitPowerType',
'UnitPower',
'UnitPowerMax',
'UnitIsTapDenied',
'GetRaidTargetIndex',
'UnitGetIncomingHeals',
'UnitGetTotalHealAbsorbs',
'UnitGetTotalAbsorbs',
'UnitCastingInfo',
'UnitChannelInfo',
'AuraUtil',
'BackdropTemplateMixin',
'CombatLogGetCurrentEventInfo',
'CombatLog_Object_IsA',
'COMBATLOG_FILTER_HOSTILE_PLAYERS',
'IsInInstance'
}
allow_defined_top = true
self = false