-
Notifications
You must be signed in to change notification settings - Fork 11
/
config
70 lines (59 loc) · 1.65 KB
/
config
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
[source]
# Dir where various folders containing source codes or text files are located.
# Each student must have his own directory under this directory. For example, if
# there are three students Tinku, Pinky, and Bablu; you should keep their
# directories as following.
#
# dir
# |
# +-- Tinku
# | |
# | +-- a.vhd
# | |
# | +-- b.vhd
# +-- Pinky
# | |
# | +-- que1.vhd
# | |
# | +-- test.vhd
# |
# +-- Bablu
# | |
# | +-- a.vhd
# | |
# | +-- Test
# | | |
# | | +-- test.vhd
# | +-- b.vhd
#
dir = ~/_DATA/SNIFFER/samples/
# These are the extension of files we want of files. If you want to compare
# all files leave it empty or .* will do.
extension = .*
# Specify language of file.
# Available : vhdl, verilog, ctype, text, pdf
language = vhdl
# Dump the results of analysis in directory of database.
dump_result = true
[filter]
# A list of text which if found in file then reject the file.
# textA >> textB; reject file if textA is followed by textB
# textA || textB; reject file if textA or textB is found.
# textA && textB; reject if both text are found.
ignore_text = option scale
# If you know python re library then you can specify the regular expression
# which should be ignore.
regex = ((entity\s+QueueTb)|(Madhav\s+Desai))
regex_flags = DOTALL,IGNORECASE
# larger size will be ignored. -1 for infinite size. In Kb
max_size = -1
# Max words a text file can contains. -1 for 2^32.
max_words = 800000
# Mininum words a text files must contain.
min_words = 10
[algorithm]
# Available algoritms : difflib, quick,
name = difflib
[database]
# path : Path where sqlite3 database should be saved.
path = ~/_DATA/SNIFFER/