forked from fooof-tools/fooof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
47 lines (37 loc) · 807 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
# 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*
# Ignore coverage file
.coverage
# Ignore testing related files
.pytest_cache/*
# Ignore temp file for linter output
_lint.txt
# Ignore all files generated during testing
*/tests/test_files/*
# Ignore any data files or files generated in the documentation
/tutorials/**/*.pdf
/tutorials/**/*.json
/tutorials/**/data/*
/examples/**/*.pdf
/examples/**/*.json
/examples/**/data/*
/motivations/**/*.pdf
/motivations/**/*.json
/motivations/**/data/*
# Ignore documentation files
doc/_build/*
doc/auto_examples/*
doc/auto_tutorials/*
doc/auto_motivations/*
doc/generated/*