summaryrefslogtreecommitdiff
path: root/server/src/constant/DiagnosticDefaultSeverity.lua
blob: eef44107507b02adaea09a938e30967bdb02bb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
return {
    ['unused-local']        = 'Hint',
    ['undefined-global']    = 'Warning',
    ['unused-label']        = 'Hint',
    ['unused-vararg']       = 'Hint',
    ['trailing-space']      = 'Hint',
    ['redefined-local']     = 'Hint',
    ['newline-call']        = 'Information',
    ['redundant-parameter'] = 'Information',
    ['ambiguity-1']         = 'Warning',
    ['lowercase-global']    = 'Information',
    ['undefined-env-child'] = 'Information',
    ['duplicate-index']     = 'Warning',
    ['empty-block']         = 'Information',
    ['redundant-value']     = 'Information',
    ['emmy-lua']            = 'Warning',
    ['set-const']           = 'Error',
}