diff options
| author | Árni Dagur <agudmundsson@fc-md.umd.edu> | 2020-03-28 23:15:47 -0400 |
|---|---|---|
| committer | Árni Dagur <agudmundsson@fc-md.umd.edu> | 2020-03-28 23:15:47 -0400 |
| commit | 129bfc10146973ce8a33fcd383c56c4f8071a492 (patch) | |
| tree | 453a3a4f4776e29859df94c4a97354940e3dc919 /.gitignore | |
first commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 243 |
1 files changed, 243 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb366a8 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,243 @@ | |||
| 1 | # -- Rust -- | ||
| 2 | /target | ||
| 3 | Cargo.lock | ||
| 4 | |||
| 5 | # -- Editors -- | ||
| 6 | # Created by https://www.gitignore.io/api/vim,emacs,visualstudiocode | ||
| 7 | # Edit at https://www.gitignore.io/?templates=vim,emacs,visualstudiocode | ||
| 8 | |||
| 9 | ### Emacs ### | ||
| 10 | # -*- mode: gitignore; -*- | ||
| 11 | *~ | ||
| 12 | \#*\# | ||
| 13 | /.emacs.desktop | ||
| 14 | /.emacs.desktop.lock | ||
| 15 | *.elc | ||
| 16 | auto-save-list | ||
| 17 | tramp | ||
| 18 | .\#* | ||
| 19 | |||
| 20 | # Org-mode | ||
| 21 | .org-id-locations | ||
| 22 | *_archive | ||
| 23 | |||
| 24 | # flymake-mode | ||
| 25 | *_flymake.* | ||
| 26 | |||
| 27 | # eshell files | ||
| 28 | /eshell/history | ||
| 29 | /eshell/lastdir | ||
| 30 | |||
| 31 | # elpa packages | ||
| 32 | /elpa/ | ||
| 33 | |||
| 34 | # reftex files | ||
| 35 | *.rel | ||
| 36 | |||
| 37 | # AUCTeX auto folder | ||
| 38 | /auto/ | ||
| 39 | |||
| 40 | # cask packages | ||
| 41 | .cask/ | ||
| 42 | dist/ | ||
| 43 | |||
| 44 | # Flycheck | ||
| 45 | flycheck_*.el | ||
| 46 | |||
| 47 | # server auth directory | ||
| 48 | /server/ | ||
| 49 | |||
| 50 | # projectiles files | ||
| 51 | .projectile | ||
| 52 | |||
| 53 | # directory configuration | ||
| 54 | .dir-locals.el | ||
| 55 | |||
| 56 | # network security | ||
| 57 | /network-security.data | ||
| 58 | |||
| 59 | |||
| 60 | ### Vim ### | ||
| 61 | # Swap | ||
| 62 | [._]*.s[a-v][a-z] | ||
| 63 | [._]*.sw[a-p] | ||
| 64 | [._]s[a-rt-v][a-z] | ||
| 65 | [._]ss[a-gi-z] | ||
| 66 | [._]sw[a-p] | ||
| 67 | |||
| 68 | # Session | ||
| 69 | Session.vim | ||
| 70 | Sessionx.vim | ||
| 71 | |||
| 72 | # Temporary | ||
| 73 | .netrwhist | ||
| 74 | |||
| 75 | # Auto-generated tag files | ||
| 76 | tags | ||
| 77 | |||
| 78 | # Persistent undo | ||
| 79 | [._]*.un~ | ||
| 80 | |||
| 81 | # Coc configuration directory | ||
| 82 | .vim | ||
| 83 | |||
| 84 | ### VisualStudioCode ### | ||
| 85 | .vscode/* | ||
| 86 | !.vscode/settings.json | ||
| 87 | !.vscode/tasks.json | ||
| 88 | !.vscode/launch.json | ||
| 89 | !.vscode/extensions.json | ||
| 90 | |||
| 91 | ### VisualStudioCode Patch ### | ||
| 92 | # Ignore all local history of files | ||
| 93 | .history | ||
| 94 | |||
| 95 | # End of https://www.gitignore.io/api/vim,emacs,visualstudiocode | ||
| 96 | |||
| 97 | # -- Python -- | ||
| 98 | # Python virtual environment | ||
| 99 | .env | ||
| 100 | |||
| 101 | # Byte-compiled / optimized / DLL files | ||
| 102 | __pycache__/ | ||
| 103 | *.py[cod] | ||
| 104 | *$py.class | ||
| 105 | |||
| 106 | # C extensions | ||
| 107 | *.so | ||
| 108 | |||
| 109 | # Distribution / packaging | ||
| 110 | .Python | ||
| 111 | build/ | ||
| 112 | develop-eggs/ | ||
| 113 | dist/ | ||
| 114 | downloads/ | ||
| 115 | eggs/ | ||
| 116 | .eggs/ | ||
| 117 | lib/ | ||
| 118 | lib64/ | ||
| 119 | parts/ | ||
| 120 | sdist/ | ||
| 121 | var/ | ||
| 122 | wheels/ | ||
| 123 | pip-wheel-metadata/ | ||
| 124 | share/python-wheels/ | ||
| 125 | *.egg-info/ | ||
| 126 | .installed.cfg | ||
| 127 | *.egg | ||
| 128 | MANIFEST | ||
| 129 | |||
| 130 | # PyInstaller | ||
| 131 | # Usually these files are written by a python script from a template | ||
| 132 | # before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
| 133 | *.manifest | ||
| 134 | *.spec | ||
| 135 | |||
| 136 | # Installer logs | ||
| 137 | pip-log.txt | ||
| 138 | pip-delete-this-directory.txt | ||
| 139 | |||
| 140 | # Unit test / coverage reports | ||
| 141 | htmlcov/ | ||
| 142 | .tox/ | ||
| 143 | .nox/ | ||
| 144 | .coverage | ||
| 145 | .coverage.* | ||
| 146 | .cache | ||
| 147 | nosetests.xml | ||
| 148 | coverage.xml | ||
| 149 | *.cover | ||
| 150 | *.py,cover | ||
| 151 | .hypothesis/ | ||
| 152 | .pytest_cache/ | ||
| 153 | cover/ | ||
| 154 | |||
| 155 | # Translations | ||
| 156 | *.mo | ||
| 157 | *.pot | ||
| 158 | |||
| 159 | # Django stuff: | ||
| 160 | *.log | ||
| 161 | local_settings.py | ||
| 162 | db.sqlite3 | ||
| 163 | db.sqlite3-journal | ||
| 164 | |||
| 165 | # Flask stuff: | ||
| 166 | instance/ | ||
| 167 | .webassets-cache | ||
| 168 | |||
| 169 | # Scrapy stuff: | ||
| 170 | .scrapy | ||
| 171 | |||
| 172 | # Sphinx documentation | ||
| 173 | docs/_build/ | ||
| 174 | |||
| 175 | # PyBuilder | ||
| 176 | .pybuilder/ | ||
| 177 | target/ | ||
| 178 | |||
| 179 | # Jupyter Notebook | ||
| 180 | .ipynb_checkpoints | ||
| 181 | |||
| 182 | # IPython | ||
| 183 | profile_default/ | ||
| 184 | ipython_config.py | ||
| 185 | |||
| 186 | # pyenv | ||
| 187 | # For a library or package, you might want to ignore these files since the code is | ||
| 188 | # intended to run in multiple environments; otherwise, check them in: | ||
| 189 | # .python-version | ||
| 190 | |||
| 191 | # pipenv | ||
| 192 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
| 193 | # However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
| 194 | # having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
| 195 | # install all needed dependencies. | ||
| 196 | #Pipfile.lock | ||
| 197 | |||
| 198 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow | ||
| 199 | __pypackages__/ | ||
| 200 | |||
| 201 | # Celery stuff | ||
| 202 | celerybeat-schedule | ||
| 203 | celerybeat.pid | ||
| 204 | |||
| 205 | # SageMath parsed files | ||
| 206 | *.sage.py | ||
| 207 | |||
| 208 | # Environments | ||
| 209 | .env | ||
| 210 | .venv | ||
| 211 | env/ | ||
| 212 | venv/ | ||
| 213 | ENV/ | ||
| 214 | env.bak/ | ||
| 215 | venv.bak/ | ||
| 216 | |||
| 217 | # Spyder project settings | ||
| 218 | .spyderproject | ||
| 219 | .spyproject | ||
| 220 | |||
| 221 | # Rope project settings | ||
| 222 | .ropeproject | ||
| 223 | |||
| 224 | # mkdocs documentation | ||
| 225 | /site | ||
| 226 | |||
| 227 | # mypy | ||
| 228 | .mypy_cache/ | ||
| 229 | .dmypy.json | ||
| 230 | dmypy.json | ||
| 231 | |||
| 232 | # Pyre type checker | ||
| 233 | .pyre/ | ||
| 234 | |||
| 235 | # pytype static type analyzer | ||
| 236 | .pytype/ | ||
| 237 | |||
| 238 | # Cython debug symbols | ||
| 239 | cython_debug/ | ||
| 240 | |||
| 241 | # static files generated from Django application using `collectstatic` | ||
| 242 | media | ||
| 243 | static | ||
