-
Notifications
You must be signed in to change notification settings - Fork 92
Description
Some IDEs store settings in folders that are not automatically .gitignore'd here. The three IDEs I know of that computational chemistry-ish developers use are
-
VS Code -
.vscode/, handled in add .vscode/ to .gitignore #110 -
PyCharm -
.idea/ -
Spyder - I don't use this and cannot speak to if it does something similar
Googling around indicates that ignoring the entirety of these folders can be dangerous (https://stackoverflow.com/a/24530928, https://stackoverflow.com/q/32964920), but I would argue that this is appropriate for a blanket default. Any project that wishes to track important settings in one of these folders can update their .gitignore. My impression is that organizations/projects using common IDE setting is quite uncommon, at least in this community.
Repeating #110 for PyCharm (or just taking it on to that PR) is a small change, just wanted to see if there's something I'm neglecting.