|
| 1 | +qodana.yaml |
| 2 | + |
| 3 | +### VisualStudioCode template |
| 4 | +.vscode/* |
| 5 | +!.vscode/settings.json |
| 6 | +!.vscode/tasks.json |
| 7 | +!.vscode/launch.json |
| 8 | +!.vscode/extensions.json |
| 9 | +!.vscode/*.code-snippets |
| 10 | + |
| 11 | +# Local History for Visual Studio Code |
| 12 | +.history/ |
| 13 | + |
| 14 | +# Built Visual Studio Code Extensions |
| 15 | +*.vsix |
| 16 | + |
| 17 | +### Rust template |
| 18 | +# Generated by Cargo |
| 19 | +# will have compiled files and executables |
| 20 | +debug/ |
| 21 | +target/ |
| 22 | + |
| 23 | +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries |
| 24 | +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html |
| 25 | +Cargo.lock |
| 26 | + |
| 27 | +# These are backup files generated by rustfmt |
| 28 | +**/*.rs.bk |
| 29 | + |
| 30 | +# MSVC Windows builds of rustc generate these, which store debugging information |
| 31 | +*.pdb |
| 32 | + |
| 33 | +# RustRover |
| 34 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 35 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 36 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 37 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 38 | +#.idea/ |
| 39 | +### JetBrains template |
| 40 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
| 41 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 42 | + |
| 43 | +# User-specific stuff |
| 44 | +.idea/**/workspace.xml |
| 45 | +.idea/**/tasks.xml |
| 46 | +.idea/**/usage.statistics.xml |
| 47 | +.idea/**/dictionaries |
| 48 | +.idea/**/shelf |
| 49 | + |
| 50 | +# AWS User-specific |
| 51 | +.idea/**/aws.xml |
| 52 | + |
| 53 | +# Generated files |
| 54 | +.idea/**/contentModel.xml |
| 55 | + |
| 56 | +# Sensitive or high-churn files |
| 57 | +.idea/**/dataSources/ |
| 58 | +.idea/**/dataSources.ids |
| 59 | +.idea/**/dataSources.local.xml |
| 60 | +.idea/**/sqlDataSources.xml |
| 61 | +.idea/**/dynamic.xml |
| 62 | +.idea/**/uiDesigner.xml |
| 63 | +.idea/**/dbnavigator.xml |
| 64 | + |
| 65 | +# Gradle |
| 66 | +.idea/**/gradle.xml |
| 67 | +.idea/**/libraries |
| 68 | + |
| 69 | +# Gradle and Maven with auto-import |
| 70 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 71 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 72 | +# auto-import. |
| 73 | +# .idea/artifacts |
| 74 | +# .idea/compiler.xml |
| 75 | +# .idea/jarRepositories.xml |
| 76 | +# .idea/modules.xml |
| 77 | +# .idea/*.iml |
| 78 | +# .idea/modules |
| 79 | +# *.iml |
| 80 | +# *.ipr |
| 81 | + |
| 82 | +# CMake |
| 83 | +cmake-build-*/ |
| 84 | + |
| 85 | +# Mongo Explorer plugin |
| 86 | +.idea/**/mongoSettings.xml |
| 87 | + |
| 88 | +# File-based project format |
| 89 | +*.iws |
| 90 | + |
| 91 | +# IntelliJ |
| 92 | +out/ |
| 93 | + |
| 94 | +# mpeltonen/sbt-idea plugin |
| 95 | +.idea_modules/ |
| 96 | + |
| 97 | +# JIRA plugin |
| 98 | +atlassian-ide-plugin.xml |
| 99 | + |
| 100 | +# Cursive Clojure plugin |
| 101 | +.idea/replstate.xml |
| 102 | + |
| 103 | +# SonarLint plugin |
| 104 | +.idea/sonarlint/ |
| 105 | + |
| 106 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 107 | +com_crashlytics_export_strings.xml |
| 108 | +crashlytics.properties |
| 109 | +crashlytics-build.properties |
| 110 | +fabric.properties |
| 111 | + |
| 112 | +# Editor-based Rest Client |
| 113 | +.idea/httpRequests |
| 114 | + |
| 115 | +# Android studio 3.1+ serialized cache file |
| 116 | +.idea/caches/build_file_checksums.ser |
| 117 | + |
| 118 | +### Emacs template |
| 119 | +# -*- mode: gitignore; -*- |
| 120 | +*~ |
| 121 | +\#*\# |
| 122 | +/.emacs.desktop |
| 123 | +/.emacs.desktop.lock |
| 124 | +*.elc |
| 125 | +auto-save-list |
| 126 | +tramp |
| 127 | +.\#* |
| 128 | + |
| 129 | +# Org-mode |
| 130 | +.org-id-locations |
| 131 | +*_archive |
| 132 | + |
| 133 | +# flymake-mode |
| 134 | +*_flymake.* |
| 135 | + |
| 136 | +# eshell files |
| 137 | +/eshell/history |
| 138 | +/eshell/lastdir |
| 139 | + |
| 140 | +# elpa packages |
| 141 | +/elpa/ |
| 142 | + |
| 143 | +# reftex files |
| 144 | +*.rel |
| 145 | + |
| 146 | +# AUCTeX auto folder |
| 147 | +/auto/ |
| 148 | + |
| 149 | +# cask packages |
| 150 | +.cask/ |
| 151 | +dist/ |
| 152 | + |
| 153 | +# Flycheck |
| 154 | +flycheck_*.el |
| 155 | + |
| 156 | +# server auth directory |
| 157 | +/server/ |
| 158 | + |
| 159 | +# projectiles files |
| 160 | +.projectile |
| 161 | + |
| 162 | +# directory configuration |
| 163 | +.dir-locals.el |
| 164 | + |
| 165 | +# network security |
| 166 | +/network-security.data |
| 167 | + |
| 168 | + |
| 169 | +### Go template |
| 170 | +# If you prefer the allow list template instead of the deny list, see community template: |
| 171 | +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore |
| 172 | +# |
| 173 | +# Binaries for programs and plugins |
| 174 | +*.exe |
| 175 | +*.exe~ |
| 176 | +*.dll |
| 177 | +*.so |
| 178 | +*.dylib |
| 179 | + |
| 180 | +# Test binary, built with `go test -c` |
| 181 | +*.test |
| 182 | + |
| 183 | +# Output of the go coverage tool, specifically when used with LiteIDE |
| 184 | +*.out |
| 185 | + |
| 186 | +# Dependency directories (remove the comment below to include it) |
| 187 | +# vendor/ |
| 188 | + |
| 189 | +# Go workspace file |
| 190 | +go.work |
| 191 | +go.work.sum |
| 192 | + |
| 193 | +# env file |
| 194 | +.env |
| 195 | + |
| 196 | +### Vim template |
| 197 | +# Swap |
| 198 | +[._]*.s[a-v][a-z] |
| 199 | +!*.svg # comment out if you don't need vector files |
| 200 | +[._]*.sw[a-p] |
| 201 | +[._]s[a-rt-v][a-z] |
| 202 | +[._]ss[a-gi-z] |
| 203 | +[._]sw[a-p] |
| 204 | + |
| 205 | +# Session |
| 206 | +Session.vim |
| 207 | +Sessionx.vim |
| 208 | + |
| 209 | +# Temporary |
| 210 | +.netrwhist |
| 211 | +*~ |
| 212 | +# Auto-generated tag files |
| 213 | +tags |
| 214 | +# Persistent undo |
| 215 | +[._]*.un~ |
| 216 | + |
| 217 | +### SublimeText template |
| 218 | +# Cache files for Sublime Text |
| 219 | +*.tmlanguage.cache |
| 220 | +*.tmPreferences.cache |
| 221 | +*.stTheme.cache |
| 222 | + |
| 223 | +# Workspace files are user-specific |
| 224 | +*.sublime-workspace |
| 225 | + |
| 226 | +# Project files should be checked into the repository, unless a significant |
| 227 | +# proportion of contributors will probably not be using Sublime Text |
| 228 | +# *.sublime-project |
| 229 | + |
| 230 | +# SFTP configuration file |
| 231 | +sftp-config.json |
| 232 | +sftp-config-alt*.json |
| 233 | + |
| 234 | +# Package control specific files |
| 235 | +Package Control.last-run |
| 236 | +Package Control.ca-list |
| 237 | +Package Control.ca-bundle |
| 238 | +Package Control.system-ca-bundle |
| 239 | +Package Control.cache/ |
| 240 | +Package Control.ca-certs/ |
| 241 | +Package Control.merged-ca-bundle |
| 242 | +Package Control.user-ca-bundle |
| 243 | +oscrypto-ca-bundle.crt |
| 244 | +bh_unicode_properties.cache |
| 245 | + |
| 246 | +# Sublime-github package stores a github token in this file |
| 247 | +# https://packagecontrol.io/packages/sublime-github |
| 248 | +GitHub.sublime-settings |
0 commit comments