Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 11a14b9fc745dabbf0d76ce9030e9e05e3b8905d 308 lines 6.5 kB view raw
1# Created by https://www.toptal.com/developers/gitignore/api/python,rust,pycharm 2# Edit at https://www.toptal.com/developers/gitignore?templates=python,rust,pycharm 3 4### PyCharm ### 5# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 6# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 7 8# User-specific stuff 9.idea/**/workspace.xml 10.idea/**/tasks.xml 11.idea/**/usage.statistics.xml 12.idea/**/dictionaries 13.idea/**/shelf 14 15# AWS User-specific 16.idea/**/aws.xml 17 18# Generated files 19.idea/**/contentModel.xml 20 21# Sensitive or high-churn files 22.idea/**/dataSources/ 23.idea/**/dataSources.ids 24.idea/**/dataSources.local.xml 25.idea/**/sqlDataSources.xml 26.idea/**/dynamic.xml 27.idea/**/uiDesigner.xml 28.idea/**/dbnavigator.xml 29 30# Gradle 31.idea/**/gradle.xml 32.idea/**/libraries 33 34# Gradle and Maven with auto-import 35# When using Gradle or Maven with auto-import, you should exclude module files, 36# since they will be recreated, and may cause churn. Uncomment if using 37# auto-import. 38# .idea/artifacts 39# .idea/compiler.xml 40# .idea/jarRepositories.xml 41# .idea/modules.xml 42# .idea/*.iml 43# .idea/modules 44# *.iml 45# *.ipr 46 47# CMake 48cmake-build-*/ 49 50# Mongo Explorer plugin 51.idea/**/mongoSettings.xml 52 53# File-based project format 54*.iws 55 56# IntelliJ 57out/ 58 59# mpeltonen/sbt-idea plugin 60.idea_modules/ 61 62# OS generated files 63.DS_Store 64 65# JIRA plugin 66atlassian-ide-plugin.xml 67 68# Cursive Clojure plugin 69.idea/replstate.xml 70 71# SonarLint plugin 72.idea/sonarlint/ 73 74# Crashlytics plugin (for Android Studio and IntelliJ) 75com_crashlytics_export_strings.xml 76crashlytics.properties 77crashlytics-build.properties 78fabric.properties 79 80# Editor-based Rest Client 81.idea/httpRequests 82 83# Android studio 3.1+ serialized cache file 84.idea/caches/build_file_checksums.ser 85 86### PyCharm Patch ### 87# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 88 89# *.iml 90# modules.xml 91# .idea/misc.xml 92# *.ipr 93 94# Sonarlint plugin 95# https://plugins.jetbrains.com/plugin/7973-sonarlint 96.idea/**/sonarlint/ 97 98# SonarQube Plugin 99# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin 100.idea/**/sonarIssues.xml 101 102# Markdown Navigator plugin 103# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced 104.idea/**/markdown-navigator.xml 105.idea/**/markdown-navigator-enh.xml 106.idea/**/markdown-navigator/ 107 108# Cache file creation bug 109# See https://youtrack.jetbrains.com/issue/JBR-2257 110.idea/$CACHE_FILE$ 111 112# CodeStream plugin 113# https://plugins.jetbrains.com/plugin/12206-codestream 114.idea/codestream.xml 115 116# Azure Toolkit for IntelliJ plugin 117# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij 118.idea/**/azureSettings.xml 119 120### Python ### 121# Byte-compiled / optimized / DLL files 122__pycache__/ 123*.py[cod] 124*$py.class 125 126# C extensions 127*.so 128 129# Distribution / packaging 130.Python 131build/ 132develop-eggs/ 133dist/ 134downloads/ 135eggs/ 136.eggs/ 137lib64/ 138parts/ 139sdist/ 140var/ 141wheels/ 142share/python-wheels/ 143*.egg-info/ 144.installed.cfg 145*.egg 146MANIFEST 147 148# PyInstaller 149# Usually these files are written by a python script from a template 150# before PyInstaller builds the exe, so as to inject date/other infos into it. 151*.manifest 152*.spec 153 154# Installer logs 155pip-log.txt 156pip-delete-this-directory.txt 157 158# Unit test / coverage reports 159htmlcov/ 160.tox/ 161.nox/ 162.coverage 163.coverage.* 164.cache 165nosetests.xml 166coverage.xml 167*.cover 168*.py,cover 169.hypothesis/ 170.pytest_cache/ 171cover/ 172 173# Translations 174*.mo 175*.pot 176 177# Django stuff: 178*.log 179local_settings.py 180db.sqlite3 181db.sqlite3-journal 182 183# Flask stuff: 184instance/ 185.webassets-cache 186 187# Scrapy stuff: 188.scrapy 189 190# Sphinx documentation 191docs/_build/ 192 193# PyBuilder 194.pybuilder/ 195target/ 196 197# Jupyter Notebook 198.ipynb_checkpoints 199 200# IPython 201profile_default/ 202ipython_config.py 203 204# pyenv 205# For a library or package, you might want to ignore these files since the code is 206# intended to run in multiple environments; otherwise, check them in: 207# .python-version 208 209# pipenv 210# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 211# However, in case of collaboration, if having platform-specific dependencies or dependencies 212# having no cross-platform support, pipenv may install dependencies that don't work, or not 213# install all needed dependencies. 214#Pipfile.lock 215 216# poetry 217# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 218# This is especially recommended for binary packages to ensure reproducibility, and is more 219# commonly ignored for libraries. 220# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 221#poetry.lock 222 223# pdm 224# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 225#pdm.lock 226# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 227# in version control. 228# https://pdm.fming.dev/#use-with-ide 229.pdm.toml 230 231# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 232__pypackages__/ 233 234# Celery stuff 235celerybeat-schedule 236celerybeat.pid 237 238# SageMath parsed files 239*.sage.py 240 241# Environments 242.env 243.venv 244env/ 245venv/ 246ENV/ 247env.bak/ 248venv.bak/ 249 250# Spyder project settings 251.spyderproject 252.spyproject 253 254# Rope project settings 255.ropeproject 256 257# mkdocs documentation 258/site 259 260# mypy 261.mypy_cache/ 262.dmypy.json 263dmypy.json 264 265# Pyre type checker 266.pyre/ 267 268# pytype static type analyzer 269.pytype/ 270 271# Cython debug symbols 272cython_debug/ 273 274# PyCharm 275# JetBrains specific template is maintained in a separate JetBrains.gitignore that can 276# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 277# and can be added to the global gitignore or merged into this file. For a more nuclear 278# option (not recommended) you can uncomment the following to ignore the entire idea folder. 279#.idea/ 280 281### Python Patch ### 282# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration 283poetry.toml 284 285# ruff 286.ruff_cache/ 287 288# LSP config files 289pyrightconfig.json 290 291### Rust ### 292# Generated by Cargo 293# will have compiled files and executables 294debug/ 295 296# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries 297# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html 298Cargo.lock 299 300# These are backup files generated by rustfmt 301**/*.rs.bk 302 303# MSVC Windows builds of rustc generate these, which store debugging information 304*.pdb 305 306# End of https://www.toptal.com/developers/gitignore/api/python,rust,pycharm 307 308.claude