blob: 2c619f64738ce053dd265fa06d05b49ee5fcc58c (
plain)
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
|
# general file excludes
~*.tmp
~*.docx
*.fmt
*~
*.o
~$*
# ignore Python caches
__pycache__
# ignore files in netlist/
/netlist/
!/netlist/configuration.ini
!/netlist/netlist.ps1
!/netlist/netlist.sh
!/netlist/template.cgc
# ignore folders
temp/
vSim/
# ignore files from PoC
/tb/common/my_project.vhdl
/py/config.private.ini
# ignore Quartus files
other/quartus/*/db/
other/quartus/*/incremental_db/
other/quartus/*/output_files/
other/quartus/*/simulation/
other/quartus/*/*.rpt
other/quartus/*/*.qws
other/quartus/*/*.bak
# general whitelist
!.publish
!.git*
|