|
| 1 | +# Created by https://www.toptal.com/developers/gitignore/api/windows,linux,pycharm |
| 2 | +# Edit at https://www.toptal.com/developers/gitignore?templates=windows,linux,pycharm |
| 3 | + |
| 4 | +### Linux ### |
| 5 | +*~ |
| 6 | + |
| 7 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 8 | +.fuse_hidden* |
| 9 | + |
| 10 | +# KDE directory preferences |
| 11 | +.directory |
| 12 | + |
| 13 | +# Linux trash folder which might appear on any partition or disk |
| 14 | +.Trash-* |
| 15 | + |
| 16 | +# .nfs files are created when an open file is removed but is still being accessed |
| 17 | +.nfs* |
| 18 | + |
| 19 | +### PyCharm ### |
| 20 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
| 21 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 22 | + |
| 23 | +# User-specific stuff |
| 24 | +.idea/**/workspace.xml |
| 25 | +.idea/**/tasks.xml |
| 26 | +.idea/**/usage.statistics.xml |
| 27 | +.idea/**/dictionaries |
| 28 | +.idea/**/shelf |
| 29 | + |
| 30 | +# AWS User-specific |
| 31 | +.idea/**/aws.xml |
| 32 | + |
| 33 | +# Generated files |
| 34 | +.idea/**/contentModel.xml |
| 35 | + |
| 36 | +# Sensitive or high-churn files |
| 37 | +.idea/**/dataSources/ |
| 38 | +.idea/**/dataSources.ids |
| 39 | +.idea/**/dataSources.local.xml |
| 40 | +.idea/**/sqlDataSources.xml |
| 41 | +.idea/**/dynamic.xml |
| 42 | +.idea/**/uiDesigner.xml |
| 43 | +.idea/**/dbnavigator.xml |
| 44 | + |
| 45 | +# Gradle |
| 46 | +.idea/**/gradle.xml |
| 47 | +.idea/**/libraries |
| 48 | + |
| 49 | +# Gradle and Maven with auto-import |
| 50 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 51 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 52 | +# auto-import. |
| 53 | +# .idea/artifacts |
| 54 | +# .idea/compiler.xml |
| 55 | +# .idea/jarRepositories.xml |
| 56 | +# .idea/modules.xml |
| 57 | +# .idea/*.iml |
| 58 | +# .idea/modules |
| 59 | +# *.iml |
| 60 | +# *.ipr |
| 61 | + |
| 62 | +# CMake |
| 63 | +cmake-build-*/ |
| 64 | + |
| 65 | +# Mongo Explorer plugin |
| 66 | +.idea/**/mongoSettings.xml |
| 67 | + |
| 68 | +# File-based project format |
| 69 | +*.iws |
| 70 | + |
| 71 | +# IntelliJ |
| 72 | +out/ |
| 73 | + |
| 74 | +# mpeltonen/sbt-idea plugin |
| 75 | +.idea_modules/ |
| 76 | + |
| 77 | +# JIRA plugin |
| 78 | +atlassian-ide-plugin.xml |
| 79 | + |
| 80 | +# Cursive Clojure plugin |
| 81 | +.idea/replstate.xml |
| 82 | + |
| 83 | +# SonarLint plugin |
| 84 | +.idea/sonarlint/ |
| 85 | + |
| 86 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 87 | +com_crashlytics_export_strings.xml |
| 88 | +crashlytics.properties |
| 89 | +crashlytics-build.properties |
| 90 | +fabric.properties |
| 91 | + |
| 92 | +# Editor-based Rest Client |
| 93 | +.idea/httpRequests |
| 94 | + |
| 95 | +# Android studio 3.1+ serialized cache file |
| 96 | +.idea/caches/build_file_checksums.ser |
| 97 | + |
| 98 | +### PyCharm Patch ### |
| 99 | +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 100 | + |
| 101 | +# *.iml |
| 102 | +# modules.xml |
| 103 | +# .idea/misc.xml |
| 104 | +# *.ipr |
| 105 | + |
| 106 | +# Sonarlint plugin |
| 107 | +# https://plugins.jetbrains.com/plugin/7973-sonarlint |
| 108 | +.idea/**/sonarlint/ |
| 109 | + |
| 110 | +# SonarQube Plugin |
| 111 | +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin |
| 112 | +.idea/**/sonarIssues.xml |
| 113 | + |
| 114 | +# Markdown Navigator plugin |
| 115 | +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced |
| 116 | +.idea/**/markdown-navigator.xml |
| 117 | +.idea/**/markdown-navigator-enh.xml |
| 118 | +.idea/**/markdown-navigator/ |
| 119 | + |
| 120 | +# Cache file creation bug |
| 121 | +# See https://youtrack.jetbrains.com/issue/JBR-2257 |
| 122 | +.idea/$CACHE_FILE$ |
| 123 | + |
| 124 | +# CodeStream plugin |
| 125 | +# https://plugins.jetbrains.com/plugin/12206-codestream |
| 126 | +.idea/codestream.xml |
| 127 | + |
| 128 | +# Azure Toolkit for IntelliJ plugin |
| 129 | +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij |
| 130 | +.idea/**/azureSettings.xml |
| 131 | + |
| 132 | +### Windows ### |
| 133 | +# Windows thumbnail cache files |
| 134 | +Thumbs.db |
| 135 | +Thumbs.db:encryptable |
| 136 | +ehthumbs.db |
| 137 | +ehthumbs_vista.db |
| 138 | + |
| 139 | +# Dump file |
| 140 | +*.stackdump |
| 141 | + |
| 142 | +# Folder config file |
| 143 | +[Dd]esktop.ini |
| 144 | + |
| 145 | +# Recycle Bin used on file shares |
| 146 | +$RECYCLE.BIN/ |
| 147 | + |
| 148 | +# Windows Installer files |
| 149 | +*.cab |
| 150 | +*.msi |
| 151 | +*.msix |
| 152 | +*.msm |
| 153 | +*.msp |
| 154 | + |
| 155 | +# Windows shortcuts |
| 156 | +*.lnk |
| 157 | + |
| 158 | +# End of https://www.toptal.com/developers/gitignore/api/windows,linux,pycharm |
| 159 | +/Raspberry/keys.secret |
| 160 | +/Raspberry/Discord BOT/Discord.log |
0 commit comments