-
Notifications
You must be signed in to change notification settings - Fork 20
fix: ignore the entire .idea
folder
#938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,5 +1,4 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Created by .ignore support plugin (hsz.mobi) | ||||||||||||||||||||||||||||||||||||||||||||||||||
### Python template | ||||||||||||||||||||||||||||||||||||||||||||||||||
# https://github.com/github/gitignore/blob/main/Python.gitignore | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Byte-compiled / optimized / DLL files | ||||||||||||||||||||||||||||||||||||||||||||||||||
__pycache__/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
*.py[cod] | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -96,7 +95,30 @@ ipython_config.py | |||||||||||||||||||||||||||||||||||||||||||||||||
# install all needed dependencies. | ||||||||||||||||||||||||||||||||||||||||||||||||||
#Pipfile.lock | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow | ||||||||||||||||||||||||||||||||||||||||||||||||||
# UV | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. | ||||||||||||||||||||||||||||||||||||||||||||||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more | ||||||||||||||||||||||||||||||||||||||||||||||||||
# commonly ignored for libraries. | ||||||||||||||||||||||||||||||||||||||||||||||||||
#uv.lock | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# poetry | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. | ||||||||||||||||||||||||||||||||||||||||||||||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more | ||||||||||||||||||||||||||||||||||||||||||||||||||
# commonly ignored for libraries. | ||||||||||||||||||||||||||||||||||||||||||||||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control | ||||||||||||||||||||||||||||||||||||||||||||||||||
#poetry.lock | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# pdm | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. | ||||||||||||||||||||||||||||||||||||||||||||||||||
#pdm.lock | ||||||||||||||||||||||||||||||||||||||||||||||||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it | ||||||||||||||||||||||||||||||||||||||||||||||||||
# in version control. | ||||||||||||||||||||||||||||||||||||||||||||||||||
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control | ||||||||||||||||||||||||||||||||||||||||||||||||||
.pdm.toml | ||||||||||||||||||||||||||||||||||||||||||||||||||
.pdm-python | ||||||||||||||||||||||||||||||||||||||||||||||||||
.pdm-build/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+98
to
+119
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That out of scope on this PR, please revert
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I just copy pasted the latest .gitignore so that I can use the |
||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+98
to
+121
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
__pypackages__/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# Celery stuff | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -115,11 +137,11 @@ ENV/ | |||||||||||||||||||||||||||||||||||||||||||||||||
env.bak/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
venv.bak/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# Spyder {{package_name}} settings | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Spyder project settings | ||||||||||||||||||||||||||||||||||||||||||||||||||
.spyderproject | ||||||||||||||||||||||||||||||||||||||||||||||||||
.spyproject | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# Rope {{package_name}} settings | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Rope project settings | ||||||||||||||||||||||||||||||||||||||||||||||||||
.ropeproject | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# mkdocs documentation | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -139,6 +161,19 @@ dmypy.json | |||||||||||||||||||||||||||||||||||||||||||||||||
# Cython debug symbols | ||||||||||||||||||||||||||||||||||||||||||||||||||
cython_debug/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# 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/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# Ruff stuff: | ||||||||||||||||||||||||||||||||||||||||||||||||||
.ruff_cache/ | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
# PyPI configuration file | ||||||||||||||||||||||||||||||||||||||||||||||||||
.pypirc | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+164
to
+176
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
{%- if is_django_package %} | ||||||||||||||||||||||||||||||||||||||||||||||||||
# Generated file | ||||||||||||||||||||||||||||||||||||||||||||||||||
requirements-dev.txt | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please leave these files, they are here for a reason, it's because they pre-configure the PyCharm workspace.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you still want it to be .gitignore ed?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If not, JetBrains.gitignore needs to be used as well, I suppose There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yes, no problems with that. I actually ignore it in my system level config :) It's just that it's useful to have a starting config on my machine 😄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.