Skip to content

Commit c0a1dcc

Browse files
committed
Add '.gitignore' file
1 parent 1327f78 commit c0a1dcc

File tree

1 file changed

+201
-0
lines changed

1 file changed

+201
-0
lines changed

.gitignore

Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
# Compiler outputs
2+
build
3+
build-*
4+
5+
# Visual Studio Code
6+
.vscode/
7+
.devcontainer/
8+
*.code-workspace
9+
.history/
10+
11+
# OS generated files
12+
.DS_Store
13+
.DS_Store?
14+
._*
15+
.Spotlight-V100
16+
.Trashes
17+
ehthumbs.db
18+
Thumbs.db
19+
.AppleDouble
20+
.LSOverride
21+
22+
# Files that might appear in the root of a volume
23+
.DocumentRevisions-V100
24+
.fseventsd
25+
.TemporaryItems
26+
.VolumeIcon.icns
27+
.com.apple.timemachine.donotpresent
28+
29+
# Directories potentially created on remote AFP share
30+
.AppleDB
31+
.AppleDesktop
32+
Network Trash Folder
33+
Temporary Items
34+
.apdisk
35+
36+
### macOS Patch ###
37+
# iCloud generated files
38+
*.icloud
39+
40+
# CMake
41+
CMakeLists.txt.user
42+
CMakeCache.txt
43+
CMakeFiles
44+
CMakeScripts
45+
Testing
46+
Makefile
47+
cmake_install.cmake
48+
install_manifest.txt
49+
compile_commands.json
50+
CTestTestfile.cmake
51+
_deps
52+
53+
### CMake Patch ###
54+
# External projects
55+
*-prefix/
56+
57+
# Prerequisites
58+
*.d
59+
60+
# Compiled Object files
61+
*.slo
62+
*.lo
63+
*.o
64+
*.ko
65+
*.obj
66+
*.elf
67+
68+
# Precompiled Headers
69+
*.gch
70+
*.pch
71+
72+
# Linker output
73+
*.ilk
74+
*.map
75+
*.exp
76+
77+
# Compiled Dynamic libraries
78+
*.so
79+
*.so.*
80+
*.dylib
81+
*.dll
82+
83+
# Compiled Static libraries
84+
*.lai
85+
*.la
86+
*.a
87+
*.lib
88+
89+
# Executables
90+
*.exe
91+
*.out
92+
*.app
93+
*.i*86
94+
*.x86_64
95+
*.hex
96+
97+
# Debug files
98+
*.dSYM/
99+
*.su
100+
*.idb
101+
*.pdb
102+
103+
# Python
104+
# Byte-compiled / optimized / DLL files
105+
__pycache__/
106+
*.py[cod]
107+
*$py.class
108+
109+
# Distribution / packaging
110+
.Python
111+
build/
112+
develop-eggs/
113+
dist/
114+
downloads/
115+
eggs/
116+
.eggs/
117+
lib/
118+
lib64/
119+
parts/
120+
sdist/
121+
var/
122+
wheels/
123+
pip-wheel-metadata/
124+
share/python-wheels/
125+
*.egg-info/
126+
.installed.cfg
127+
*.egg
128+
*.egg-link
129+
MANIFEST
130+
131+
# PyInstaller
132+
# Usually these files are written by a python script from a template
133+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
134+
*.manifest
135+
*.spec
136+
137+
# Installer logs
138+
pip-log.txt
139+
pip-delete-this-directory.txt
140+
141+
# Unit test / coverage reports
142+
htmlcov/
143+
.tox/
144+
.nox/
145+
.coverage
146+
.coverage.*
147+
.cache
148+
nosetests.xml
149+
coverage.xml
150+
*.cover
151+
*.py,cover
152+
.hypothesis/
153+
.pytest_cache/
154+
cover/
155+
156+
# Translations
157+
*.mo
158+
*.pot
159+
160+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
161+
__pypackages__/
162+
163+
# Environments
164+
.env
165+
.venv
166+
env/
167+
venv/
168+
ENV/
169+
env.bak/
170+
venv.bak/
171+
172+
# pyenv
173+
.python-version
174+
175+
# mypy
176+
.mypy_cache/
177+
.dmypy.json
178+
dmypy.json
179+
180+
# Pyre type checker
181+
.pyre/
182+
183+
# pytype static type analyzer
184+
.pytype/
185+
186+
# Cython debug symbols
187+
cython_debug/
188+
189+
# Sphinx documentation
190+
docs/_build/
191+
192+
# PyBuilder
193+
.pybuilder/
194+
target/
195+
196+
# Jupyter Notebook
197+
.ipynb_checkpoints
198+
199+
# IPython
200+
profile_default/
201+
ipython_config.py

0 commit comments

Comments
 (0)