-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
79 lines (73 loc) · 1.82 KB
/
.gitignore
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# IDE/OS files
.DS_Store
.venv/
# Build and Output
bin/
build*/
*.build/
dist*/
*.dist/
zips/
__pycache__/
pyinstall/w/Configure/
pyinstall/w/MKOB/
nuitka-crash-report.xml
*.pyd
*.pyi
# Ignore generated *.cmd and *.exe files. If they are needed, include them with a '!' line.
*.cmd
*.exe
# Generated / Intermediate
**/CMakeCache.txt
**/CMakePresets.json
**/CTestTestfile.cmake
**/CPackConfig.cmake
**/cmake_install.cmake
**/install_manifest.txt
**/compie_commands.json
# PCB
*/#auto_saved_files#
*/#auto_saved_files#/*
*/_autosave-*.kicad_pcb
*/*-bak
*/*-backups/*
*/_reports/*
*.dsn
Fp-info-cache
# temporary
~$*.*
*.bak
# Runtime output
*.log
*.out
*.pyo
*.pyc
*.toc
*.zip
log.txt
Capture-Replay/*.txt
# PNG files not within the Documents folder
*.png
# Ignore JSON files from recordings. If JSON files are needed in the source, include them with a '!' line.
*.json
# Include VSCode settings
!.vscode/*.json
# Ignore MRT SchedFeed Spec files. If .mrtsfs files are needed in the source, include them with a '!' line.
*.mrtsfs
!*example.mrtsfs
# Ignore MRT Selector files. If .mrtsel files are needed in the source, include them with a '!' line.
*.mrtsel
!*example.mrtsel
# Ignore PKCFG files from saving configurations. If PKCFG files are needed in the source, include them with a '!' line.
*.pkcfg
# Ignore PKREC files from recordings. If PKREC files are needed in the source, include them with a '!' line.
*.pkrec
# Ignore Telegram configuration files. If one is needed, name it something else or specifically include it with a '!' line.
tg_config.tgc
# Ignore Telegram Masthead '.svg' files. If needed, include them with a '!' line.
*.svg
# Ignore 'test' programs. If test programs are needed, include them with a '!' line
_test*.py
# Include anything that is put into the Documentation and mkob_learn folders
!Documentation/**
!src.py/mkob_learn/**