Skip to content

Commit

Permalink
Merge pull request #622 from NLeSC/599-gitignore
Browse files Browse the repository at this point in the history
599-update gitignore
  • Loading branch information
lyashevska committed Aug 28, 2024
2 parents 2316231 + 1029c53 commit caf8c92
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* Make online documentation optional [#476](https://github.com/NLeSC/python-template/pull/476)

### Changed
* Updated .gitignore [#622](https://github.com/NLeSC/python-template/pull/622)
* add extra info for sub-menus [#628](https://github.com/NLeSC/python-template/pull/628)
* skip merging CHANGELOG.md and CODE_OF_CONDUCT.md if they exist [#628](https://github.com/NLeSC/python-template/pull/628)
* added value field to license options [#617](https://github.com/NLeSC/python-template/pull/617)
Expand Down
62 changes: 49 additions & 13 deletions template/.gitignore
Original file line number Diff line number Diff line change
@@ -1,33 +1,69 @@
# Byte-compiled / optimized / DLL files
*.py[cod]
*.egg-info
*.eggs
.ipynb_checkpoints

build
dist
.cache
*$py.class
__pycache__

htmlcov
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg

# jupyter notebook
.ipynb_checkpoints

# Unit test / coverage reports
htmlcov/
.coverage
.coverage.*
coverage.xml
.cache
.pytest_cache
.tox
.tox/

# Sphinx documentation
docs/_build

# ide
.idea
.eclipse
.vscode
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.spyderproject
.spyproject

# Mac
.DS_Store

# virtual environments
env
.env
env3
.env3
venv
.venv
venv3
.venv3
ENV/
env.bak/
venv.bak/

.swp
# vim
*.swp
*.swo
*.orig

0 comments on commit caf8c92

Please sign in to comment.