/ .gitignore
.gitignore
1 ### Custom Additions specific to the project 2 crda-* 3 *.pcap 4 *.sh 5 *.tar.xz 6 *.puml 7 *.txt 8 *.csv 9 key2pub.py 10 wireless-regdb* 11 example.ipynb 12 config.ini 13 share/* 14 Archive/* 15 references/* 16 references 17 Archive 18 archive.py 19 ### Generated by gibo (https://github.com/simonwhitaker/gibo) 20 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Images.gitignore 21 22 # JPEG 23 *.jpg 24 *.jpeg 25 *.jpe 26 *.jif 27 *.jfif 28 *.jfi 29 30 # JPEG 2000 31 *.jp2 32 *.j2k 33 *.jpf 34 *.jpx 35 *.jpm 36 *.mj2 37 38 # JPEG XR 39 *.jxr 40 *.hdp 41 *.wdp 42 43 # Graphics Interchange Format 44 *.gif 45 46 # RAW 47 *.raw 48 49 # Web P 50 *.webp 51 52 # Portable Network Graphics 53 *.png 54 55 # Animated Portable Network Graphics 56 *.apng 57 58 # Multiple-image Network Graphics 59 *.mng 60 61 # Tagged Image File Format 62 *.tiff 63 *.tif 64 65 # Scalable Vector Graphics 66 *.svg 67 *.svgz 68 69 # Portable Document Format 70 *.pdf 71 72 # X BitMap 73 *.xbm 74 75 # BMP 76 *.bmp 77 *.dib 78 79 # ICO 80 *.ico 81 82 # 3D Images 83 *.3dm 84 *.max 85 86 87 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Linux.gitignore 88 89 *~ 90 91 # temporary files which can be created if a process still has a handle open of a deleted file 92 .fuse_hidden* 93 94 # KDE directory preferences 95 .directory 96 97 # Linux trash folder which might appear on any partition or disk 98 .Trash-* 99 100 # .nfs files are created when an open file is removed but is still being accessed 101 .nfs* 102 103 104 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Elisp.gitignore 105 106 # Compiled 107 *.elc 108 109 # Packaging 110 .cask 111 112 # Backup files 113 *~ 114 115 # Undo-tree save-files 116 *.~undo-tree 117 118 119 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Vim.gitignore 120 121 # Swap 122 [._]*.s[a-v][a-z] 123 !*.svg # comment out if you don't need vector files 124 [._]*.sw[a-p] 125 [._]s[a-rt-v][a-z] 126 [._]ss[a-gi-z] 127 [._]sw[a-p] 128 129 # Session 130 Session.vim 131 Sessionx.vim 132 133 # Temporary 134 .netrwhist 135 *~ 136 # Auto-generated tag files 137 tags 138 # Persistent undo 139 [._]*.un~ 140 141 142 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Emacs.gitignore 143 144 # -*- mode: gitignore; -*- 145 *~ 146 \#*\# 147 /.emacs.desktop 148 /.emacs.desktop.lock 149 *.elc 150 auto-save-list 151 tramp 152 .\#* 153 154 # Org-mode 155 .org-id-locations 156 *_archive 157 158 # flymake-mode 159 *_flymake.* 160 161 # eshell files 162 /eshell/history 163 /eshell/lastdir 164 165 # elpa packages 166 /elpa/ 167 168 # reftex files 169 *.rel 170 171 # AUCTeX auto folder 172 /auto/ 173 174 # cask packages 175 .cask/ 176 dist/ 177 178 # Flycheck 179 flycheck_*.el 180 181 # server auth directory 182 /server/ 183 184 # projectiles files 185 .projectile 186 187 # directory configuration 188 .dir-locals.el 189 190 # network security 191 /network-security.data 192 193 194 195 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Diff.gitignore 196 197 *.patch 198 *.diff 199 200 201 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/community/DotNet/core.gitignore 202 203 *.swp 204 *.*~ 205 project.lock.json 206 .DS_Store 207 *.pyc 208 nupkg/ 209 210 # Visual Studio Code 211 .vscode 212 213 # Rider 214 .idea 215 216 # User-specific files 217 *.suo 218 *.user 219 *.userosscache 220 *.sln.docstates 221 222 # Build results 223 [Dd]ebug/ 224 [Dd]ebugPublic/ 225 [Rr]elease/ 226 [Rr]eleases/ 227 x64/ 228 x86/ 229 build/ 230 bld/ 231 [Bb]in/ 232 [Oo]bj/ 233 [Oo]ut/ 234 msbuild.log 235 msbuild.err 236 msbuild.wrn 237 238 # Visual Studio 2015 239 .vs/ 240 241 242 243 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Python.gitignore 244 245 # Byte-compiled / optimized / DLL files 246 __pycache__/ 247 *.py[cod] 248 *$py.class 249 250 # C extensions 251 *.so 252 253 # Distribution / packaging 254 .Python 255 build/ 256 develop-eggs/ 257 dist/ 258 downloads/ 259 eggs/ 260 .eggs/ 261 lib/ 262 lib64/ 263 parts/ 264 sdist/ 265 var/ 266 wheels/ 267 share/python-wheels/ 268 *.egg-info/ 269 .installed.cfg 270 *.egg 271 MANIFEST 272 273 # PyInstaller 274 # Usually these files are written by a python script from a template 275 # before PyInstaller builds the exe, so as to inject date/other infos into it. 276 *.manifest 277 *.spec 278 279 # Installer logs 280 pip-log.txt 281 pip-delete-this-directory.txt 282 283 # Unit test / coverage reports 284 htmlcov/ 285 .tox/ 286 .nox/ 287 .coverage 288 .coverage.* 289 .cache 290 nosetests.xml 291 coverage.xml 292 *.cover 293 *.py,cover 294 .hypothesis/ 295 .pytest_cache/ 296 cover/ 297 298 # Translations 299 *.mo 300 *.pot 301 302 # Django stuff: 303 *.log 304 local_settings.py 305 db.sqlite3 306 db.sqlite3-journal 307 308 # Flask stuff: 309 instance/ 310 .webassets-cache 311 312 # Scrapy stuff: 313 .scrapy 314 315 # Sphinx documentation 316 docs/_build/ 317 318 # PyBuilder 319 .pybuilder/ 320 target/ 321 322 # Jupyter Notebook 323 .ipynb_checkpoints 324 325 # IPython 326 profile_default/ 327 ipython_config.py 328 329 # pyenv 330 # For a library or package, you might want to ignore these files since the code is 331 # intended to run in multiple environments; otherwise, check them in: 332 # .python-version 333 334 # pipenv 335 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 336 # However, in case of collaboration, if having platform-specific dependencies or dependencies 337 # having no cross-platform support, pipenv may install dependencies that don't work, or not 338 # install all needed dependencies. 339 #Pipfile.lock 340 341 # poetry 342 # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 343 # This is especially recommended for binary packages to ensure reproducibility, and is more 344 # commonly ignored for libraries. 345 # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 346 #poetry.lock 347 348 # pdm 349 # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 350 #pdm.lock 351 # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 352 # in version control. 353 # https://pdm.fming.dev/#use-with-ide 354 .pdm.toml 355 356 # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 357 __pypackages__/ 358 359 # Celery stuff 360 celerybeat-schedule 361 celerybeat.pid 362 363 # SageMath parsed files 364 *.sage.py 365 366 # Environments 367 .env 368 .venv 369 env/ 370 venv/ 371 ENV/ 372 env.bak/ 373 venv.bak/ 374 375 # Spyder project settings 376 .spyderproject 377 .spyproject 378 379 # Rope project settings 380 .ropeproject 381 382 # mkdocs documentation 383 /site 384 385 # mypy 386 .mypy_cache/ 387 .dmypy.json 388 dmypy.json 389 390 # Pyre type checker 391 .pyre/ 392 393 # pytype static type analyzer 394 .pytype/ 395 396 # Cython debug symbols 397 cython_debug/ 398 399 # PyCharm 400 # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 401 # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 402 # and can be added to the global gitignore or merged into this file. For a more nuclear 403 # option (not recommended) you can uncomment the following to ignore the entire idea folder. 404 #.idea/ 405 406 407 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/VirtualEnv.gitignore 408 409 # Virtualenv 410 # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ 411 .Python 412 [Bb]in 413 [Ii]nclude 414 [Ll]ib 415 [Ll]ib64 416 [Ll]ocal 417 [Ss]cripts 418 pyvenv.cfg 419 .venv 420 pip-selfcheck.json 421 422 423 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Backup.gitignore 424 425 *.bak 426 *.gho 427 *.ori 428 *.orig 429 *.tmp 430 431 432 ### Generated by gibo (https://github.com/simonwhitaker/gibo) 433 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/community/Nix.gitignore 434 435 # Ignore build outputs from performing a nix-build or `nix build` command 436 result 437 result-* 438 439 440 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/Dropbox.gitignore 441 442 # Dropbox settings and caches 443 .dropbox 444 .dropbox.attr 445 .dropbox.cache 446 447 448 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/SublimeText.gitignore 449 450 # Cache files for Sublime Text 451 *.tmlanguage.cache 452 *.tmPreferences.cache 453 *.stTheme.cache 454 455 # Workspace files are user-specific 456 *.sublime-workspace 457 458 # Project files should be checked into the repository, unless a significant 459 # proportion of contributors will probably not be using Sublime Text 460 # *.sublime-project 461 462 # SFTP configuration file 463 sftp-config.json 464 sftp-config-alt*.json 465 466 # Package control specific files 467 Package Control.last-run 468 Package Control.ca-list 469 Package Control.ca-bundle 470 Package Control.system-ca-bundle 471 Package Control.cache/ 472 Package Control.ca-certs/ 473 Package Control.merged-ca-bundle 474 Package Control.user-ca-bundle 475 oscrypto-ca-bundle.crt 476 bh_unicode_properties.cache 477 478 # Sublime-github package stores a github token in this file 479 # https://packagecontrol.io/packages/sublime-github 480 GitHub.sublime-settings 481 482 483 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/VirtualEnv.gitignore 484 485 # Virtualenv 486 # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ 487 .Python 488 [Bb]in 489 [Ii]nclude 490 [Ll]ib 491 [Ll]ib64 492 [Ll]ocal 493 [Ss]cripts 494 pyvenv.cfg 495 .venv 496 pip-selfcheck.json 497 498 499 ### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Global/VisualStudioCode.gitignore 500 501 .vscode/* 502 !.vscode/settings.json 503 !.vscode/tasks.json 504 !.vscode/launch.json 505 !.vscode/extensions.json 506 !.vscode/*.code-snippets 507 508 # Local History for Visual Studio Code 509 .history/ 510 511 # Built Visual Studio Code Extensions 512 *.vsix 513 514