This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.ini
83 lines (59 loc) · 1.64 KB
/
config.ini
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
83
[Config]
keys=ProfileName,OutputFormat,RequestTimeout,StartingDir,recurse,Exclusions,scanOrderBy,scanQoQ,scanBuiltInFunc,showScopeInfo,highlightClientScopes,ClientScopes,ReturnSqlSegments
[ProfileName]
label=Profile Name
type=text
; Basic Settings
[OutputFormat]
label=Output Format
type=select
options=HTML,JSON,WDDX,XML
[RequestTimeout]
label=Request Timeout
type=text
hint=Override the Request Timeout setting. Set to 'default' to ignore.
; Directory Settings
[StartingDir]
label=Directory
type=text
hint=Absolute path or mapping.
[recurse]
label=Recurse?
type=boolean
hint=Enable to scan inside sub-directories.
[Exclusions]
label=Exclusions
type=text
hint=A regular expression specifying which files/directories to exclude.
; Scanner Flags
[scanQoQ]
label=Scan Query of Queries?
type=boolean
hint=Enable to include Queries with dbtype="query".
[scanBuiltInFunc]
label=Scan Built-in Functions?
type=boolean
hint=Enable to include functions like Now(), Round(...), ArrayLen(...), etc.
[scanOrderBy]
label=Scan ORDER BY?
type=boolean
hint=Disable to exclude ORDER BY clauses from scanning.
status=experimental
; Result Options
[showScopeInfo]
label=Show Scope Info?
type=boolean
hint=Disable to not provide information about scopes which variables are in.
[highlightClientScopes]
label=Highlight Client Scopes?
type=boolean
hint=Disbale to highlight queries which contain client scoped variables.
[ClientScopes]
label=Client Scopes
type=text
hint=A list of scopes which can be directly set by clients.
[ReturnSqlSegments]
label=Return SQL Segments
type=boolean
hint=Enable to include separate SELECT/FROM/WHERE/etc in result data.
status=experimental