-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.gitignore
77 lines (67 loc) · 981 Bytes
/
.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
### Do not modify these first three ignore rules. Needed to ignore files with no extension ###
# Ignore all files including binary files that have no extension
*
# Unignore all files with extensions
!*.*
# Unignore all directories
!*/
# Specifically keep these files with no extension
!Dockerfile
!LICENSE*
!LEGAL*
!bin/add-exercise
!bin/fetch-configlet
!bin/install-roc
!bin/verify-exercises
# Ignore *.exe files except those in bin/
*.exe
!bin/*.exe
# Ignore configlet
bin/configlet.exe
bin/configlet
# Ignore problem specs directory
.problem-specifications/
# Ignore Python files
*.beam
*.pyc
.ropeproject
.mypy_cache/
.pytest_cache
__pycache__
.venv
# macOS .DS_Store files
.DS_Store
#editors
.idea/
.vscode/
.ignore
.exrc
.vimrc
.nvimrc
# Other files and directories to ignore
.cache
.envrc
*.a
*.bak
*.bc
*.bk
*.def
*.dll
*.dylib
*.lib
*.ll
*.obj
*.pdb
*.so
*.so.*
*.swp
*.tmp
*.wasm
tmp
# valgrind
vgcore.*
# roc cache files
*.rh*
*.rm*
preprocessedhost
metadata