-
Notifications
You must be signed in to change notification settings - Fork 0
/
.darklua.json
46 lines (42 loc) · 970 Bytes
/
.darklua.json
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
{
"generator": "readable",
"bundle": {
"require_mode": {
"name": "path",
"sources": {
"client": "./src/client",
"server": "./src/server",
"shared": "./src/shared",
"assets": "./assets",
"out": "./out"
}
}
},
"rules": [
{
"rule": "inject_global_value",
"identifier": "IsGameBuild",
"value": true
},
"compute_expression",
"convert_index_to_field",
"convert_local_function_to_assign",
"remove_unused_variable",
"remove_nil_declaration",
"remove_unused_while",
"remove_unused_if_branch",
"filter_after_early_return",
"remove_empty_do",
"remove_unused_variable",
"remove_function_call_parens",
"group_local_assignment",
"remove_types",
"remove_comments",
"remove_spaces",
"remove_continue",
"remove_floor_division",
"remove_if_expression",
"remove_interpolated_string",
"remove_types"
]
}