forked from fooof-tools/fooof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
48 lines (38 loc) · 824 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
# Ignore source release files
/dist/*
/fooof.egg-info/*
/build/*
# Ignore notebook checkpoints
*.ipynb_checkpoints*
# Ignore cache
*__pycache__/*
*.cache*
# Ignore compiled files
*.pyc
# Ignore Mac folder profile files
*DS_Store*
.vs*
# Ignore coverage file
.coverage
# Ignore testing related files
.pytest_cache/*
# Ignore temp file for linter output
_lint.txt
# Ignore reports generated during testing
*/tests/test_reports/*
*/tests/test_files/*
# Ignore data files generated in the tutorial
/tutorial/*.pdf
/tutorial/*.json
/tutorials/*.pdf
/tutorials/*.json
/examples/*.pdf
/exmaples/*.json
#^Note: 'tutorial' is old Jupyter notebook folder
# 'tutorials' & 'examples' are sphinx folders
# Ignore documentation files
doc/_build/*
doc/auto_examples/*
doc/auto_tutorials/*
doc/auto_motivations/*
doc/generated/*