-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfunction_filter.json
More file actions
42 lines (39 loc) · 935 Bytes
/
function_filter.json
File metadata and controls
42 lines (39 loc) · 935 Bytes
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
{
"minimum_function_size" : 10,
"function_size_metric" : "LOC_PATH",
"check_small_function_loops" : true,
"blacklist" : {
"function_filters" : [
],
"file_filters" : [
]
},
"whitelist": {
"file_filters" : [
],
"function_filters" : {
"*" : {
"events" : [
"function"
]
},
"increment_a" : {
"events" : [
"function"
]
},
"a*c" : {
"events" : [
"function"
],
"arguments" : "*"
},
"func_with_common_arg" : {
"events" : [
"function"
],
"arguments" : [ 1 ]
}
}
}
}