73 lines
1.1 KiB
Plaintext
73 lines
1.1 KiB
Plaintext
# This .gitignore file is intended to be minimal.
|
|
#
|
|
# If you find that you need additional rules, such as IDE temporary
|
|
# files, please do so either via a global .gitignore file (registered
|
|
# with core.excludesFile), or by adding private repository-specific
|
|
# rules to .git/info/exclude. See https://git-scm.com/docs/gitignore
|
|
# for more information.
|
|
|
|
# Build directories
|
|
build/
|
|
build-*/
|
|
docs/genrst/
|
|
|
|
# Test failure outputs and intermediate artefacts
|
|
tests/results/*
|
|
tests/ports/unix/ffi_lib.so
|
|
|
|
# Python cache files
|
|
__pycache__/
|
|
|
|
# Customized Makefile/project overrides
|
|
GNUmakefile
|
|
user.props
|
|
|
|
# MacOS desktop metadata files
|
|
.DS_Store
|
|
|
|
# Compiled Sources
|
|
###################
|
|
*.o
|
|
*.a
|
|
*.elf
|
|
*.bin
|
|
*.map
|
|
*.hex
|
|
*.dis
|
|
*.exe
|
|
|
|
lextab.py
|
|
yacctab.py
|
|
|
|
# Packages
|
|
############
|
|
|
|
# Logs and Databases
|
|
######################
|
|
*.log
|
|
|
|
# VIM Swap Files
|
|
######################
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.swi
|
|
*.swj
|
|
*.swk
|
|
*.swl
|
|
*.swm
|
|
|
|
# VIM Session Files
|
|
######################
|
|
Session.vim
|
|
|
|
# CTags files
|
|
######################
|
|
tags
|
|
TAGS
|
|
|
|
######################
|
|
|
|
ports/javascript/node_modules
|
|
.vscode/
|