gitignore: organize and comment on files
Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
parent
01913005cf
commit
af89bcc7f3
1 changed files with 19 additions and 5 deletions
24
.gitignore
vendored
24
.gitignore
vendored
|
|
@ -1,14 +1,28 @@
|
|||
# C compilation artifacts
|
||||
.obj/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
*.o
|
||||
*.bin
|
||||
*.dfu
|
||||
*.ihex
|
||||
*.elf
|
||||
|
||||
# Swapfiles
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
.vscode/
|
||||
build/
|
||||
|
||||
# Python cache files
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Environment files generated by lxbuildenv
|
||||
.env
|
||||
|
||||
# Output from LiteX
|
||||
build/
|
||||
test/
|
||||
.env
|
||||
|
||||
# Output from yosys
|
||||
abc.history
|
||||
Loading…
Reference in a new issue