File: .gitignore

package info (click to toggle)
myhdl 0.11-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,728 kB
  • sloc: python: 25,033; ansic: 2,203; makefile: 243; sh: 206
file content (38 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
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
*~
*.swp
*.out
*.coverage
build/
.cache
.style.yapf

# Python
*.py[cod]
__pycache__/
*egg-info/
dist/
.tox

# Cosim
*.o
*.vpi
*.so

# Simulator generated files
*.vcd
modelsim.ini
transcript
*.log
work/
work_nvc/
work_vlog/
work_vcom/
*.wlf

# Test artifacts
myhdl/**/*.v
myhdl/**/*.vhd

# Pycharm ide junk
.idea/