Skip to content

Commit caf8c92

Browse files
authored
Merge pull request #622 from NLeSC/599-gitignore
599-update gitignore
2 parents 2316231 + 1029c53 commit caf8c92

File tree

2 files changed

+50
-13
lines changed

2 files changed

+50
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* Make online documentation optional [#476](https://github.com/NLeSC/python-template/pull/476)
1818

1919
### Changed
20+
* Updated .gitignore [#622](https://github.com/NLeSC/python-template/pull/622)
2021
* add extra info for sub-menus [#628](https://github.com/NLeSC/python-template/pull/628)
2122
* skip merging CHANGELOG.md and CODE_OF_CONDUCT.md if they exist [#628](https://github.com/NLeSC/python-template/pull/628)
2223
* added value field to license options [#617](https://github.com/NLeSC/python-template/pull/617)

template/.gitignore

Lines changed: 49 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,69 @@
1+
# Byte-compiled / optimized / DLL files
12
*.py[cod]
2-
*.egg-info
3-
*.eggs
4-
.ipynb_checkpoints
5-
6-
build
7-
dist
8-
.cache
3+
*$py.class
94
__pycache__
105

11-
htmlcov
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
share/python-wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# jupyter notebook
26+
.ipynb_checkpoints
27+
28+
# Unit test / coverage reports
29+
htmlcov/
1230
.coverage
31+
.coverage.*
1332
coverage.xml
33+
.cache
1434
.pytest_cache
15-
.tox
35+
.tox/
1636

37+
# Sphinx documentation
1738
docs/_build
1839

1940
# ide
20-
.idea
21-
.eclipse
22-
.vscode
41+
# PyCharm
42+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
43+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
44+
# and can be added to the global gitignore or merged into this file. For a more nuclear
45+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
46+
#.idea/
47+
.spyderproject
48+
.spyproject
2349

2450
# Mac
2551
.DS_Store
2652

2753
# virtual environments
2854
env
55+
.env
2956
env3
57+
.env3
3058
venv
59+
.venv
3160
venv3
61+
.venv3
62+
ENV/
63+
env.bak/
64+
venv.bak/
3265

33-
.swp
66+
# vim
67+
*.swp
68+
*.swo
69+
*.orig

0 commit comments

Comments
 (0)