-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitignore_global
More file actions
58 lines (50 loc) · 763 Bytes
/
Copy pathgitignore_global
File metadata and controls
58 lines (50 loc) · 763 Bytes
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
# ignore all .a files
*.a
# but do track lib.a, even though you're ignoring .a files above
!lib.a
# ignore all .DS_Store files
.DS_Store
*/.DS_Store
# ignore VSCODE, pycharm configuration
*/.vscode
.vscode
.idea/
# ignore all files in any directory named build
# build/
# ignore doc/notes.txt, but not doc/server/arch.txt
# doc/*.txt
# ignore all .pdf files in the doc/ directory and any of its subdirectories
# doc/**/*.pdf
*.pyc
*.py[cod]
*$py.class]
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
__pycache__/
build/
.Python
develop-eggs/
dist/
downloads/
notebooks/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST