github.com/operator-framework/operator-lifecycle-manager@v0.30.0/.gitignore (about) 1 # Created by .ignore support plugin (hsz.mobi) 2 ### Emacs template 3 # -*- mode: gitignore; -*- 4 *~ 5 \#*\# 6 /.emacs.desktop 7 /.emacs.desktop.lock 8 *.elc 9 auto-save-list 10 tramp 11 .\#* 12 13 # Org-mode 14 .org-id-locations 15 *_archive 16 17 # flymake-mode 18 *_flymake.* 19 20 # eshell files 21 /eshell/history 22 /eshell/lastdir 23 24 # elpa packages 25 /elpa/ 26 27 # reftex files 28 *.rel 29 30 # AUCTeX auto folder 31 /auto/ 32 33 # cask packages 34 .cask/ 35 /dist/ 36 37 # Flycheck 38 flycheck_*.el 39 40 # server auth directory 41 /server/ 42 43 # projectiles files 44 .projectile 45 46 # directory configuration 47 .dir-locals.el 48 ### JetBrains template 49 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm 50 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 51 .idea/ 52 53 # User-specific stuff: 54 .idea/**/workspace.xml 55 .idea/**/tasks.xml 56 .idea/dictionaries 57 58 # Sensitive or high-churn files: 59 .idea/**/dataSources/ 60 .idea/**/dataSources.ids 61 .idea/**/dataSources.xml 62 .idea/**/dataSources.local.xml 63 .idea/**/sqlDataSources.xml 64 .idea/**/dynamic.xml 65 .idea/**/uiDesigner.xml 66 67 # Gradle: 68 .idea/**/gradle.xml 69 .idea/**/libraries 70 71 # CMake 72 cmake-build-debug/ 73 74 # Mongo Explorer plugin: 75 .idea/**/mongoSettings.xml 76 77 ## File-based project format: 78 *.iws 79 80 ## Plugin-specific files: 81 82 # IntelliJ 83 out/ 84 85 # mpeltonen/sbt-idea plugin 86 .idea_modules/ 87 88 # JIRA plugin 89 atlassian-ide-plugin.xml 90 91 # Cursive Clojure plugin 92 .idea/replstate.xml 93 94 # Crashlytics plugin (for Android Studio and IntelliJ) 95 com_crashlytics_export_strings.xml 96 crashlytics.properties 97 crashlytics-build.properties 98 fabric.properties 99 ### macOS template 100 # General 101 *.DS_Store 102 .AppleDouble 103 .LSOverride 104 105 # Icon must end with two \r 106 Icon 107 108 # Thumbnails 109 ._* 110 111 # Files that might appear in the root of a volume 112 .DocumentRevisions-V100 113 .fseventsd 114 .Spotlight-V100 115 .TemporaryItems 116 .Trashes 117 .VolumeIcon.icns 118 .com.apple.timemachine.donotpresent 119 120 # Directories potentially created on remote AFP share 121 .AppleDB 122 .AppleDesktop 123 Network Trash Folder 124 Temporary Items 125 .apdisk 126 ### Go template 127 # Binaries for programs and plugins 128 *.exe 129 *.dll 130 *.so 131 *.dylib 132 133 # Test binary, build with `go test -c` 134 *.test 135 136 # Output of the go coverage tool, specifically when used with LiteIDE 137 *.out 138 139 # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 140 .glide/ 141 ### Vim template 142 # Swap 143 [._]*.s[a-v][a-z] 144 [._]*.sw[a-p] 145 [._]s[a-v][a-z] 146 [._]sw[a-p] 147 148 # Session 149 Session.vim 150 151 # Temporary 152 .netrwhist 153 *~ 154 # Auto-generated tag files 155 tags 156 157 .idea/alm.iml 158 .idea/modules.xml 159 .idea/workspace.xml 160 161 162 ### VisualStudioCode ### 163 .vscode/* 164 .history 165 166 ### VisualStudio ### 167 ## Ignore Visual Studio temporary files, build results, and 168 ## files generated by popular Visual Studio add-ons. 169 ## 170 ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 171 172 # User-specific files 173 *.suo 174 *.user 175 *.userosscache 176 *.sln.docstates 177 178 # User-specific files (MonoDevelop/Xamarin Studio) 179 *.userprefs 180 181 # Build results 182 [Dd]ebug/ 183 [Dd]ebugPublic/ 184 [Rr]elease/ 185 [Rr]eleases/ 186 x64/ 187 x86/ 188 bld/ 189 [Bb]in/ 190 [Oo]bj/ 191 # [Ll]og/ TODO: Remove this rule 192 193 # Visual Studio 2015 cache/options directory 194 .vs/ 195 # Uncomment if you have tasks that create the project's static files in wwwroot 196 #wwwroot/ 197 198 # MSTest test Results 199 [Tt]est[Rr]esult*/ 200 [Bb]uild[Ll]og.* 201 202 # NUNIT 203 *.VisualState.xml 204 TestResult.xml 205 206 # Build Results of an ATL Project 207 [Dd]ebugPS/ 208 [Rr]eleasePS/ 209 dlldata.c 210 211 # .NET Core 212 project.lock.json 213 project.fragment.lock.json 214 artifacts/ 215 **/Properties/launchSettings.json 216 217 *_i.c 218 *_p.c 219 *_i.h 220 *.ilk 221 *.meta 222 *.obj 223 *.pch 224 *.pdb 225 *.pgc 226 *.pgd 227 *.rsp 228 *.sbr 229 *.tlb 230 *.tli 231 *.tlh 232 *.tmp 233 *.tmp_proj 234 *.log 235 *.vspscc 236 *.vssscc 237 .builds 238 *.pidb 239 *.svclog 240 *.scc 241 242 # Chutzpah Test files 243 _Chutzpah* 244 245 # Visual C++ cache files 246 ipch/ 247 *.aps 248 *.ncb 249 *.opendb 250 *.opensdf 251 *.sdf 252 *.cachefile 253 *.VC.db 254 *.VC.VC.opendb 255 256 # Visual Studio profiler 257 *.psess 258 *.vsp 259 *.vspx 260 *.sap 261 262 # TFS 2012 Local Workspace 263 $tf/ 264 265 # Guidance Automation Toolkit 266 *.gpState 267 268 # ReSharper is a .NET coding add-in 269 _ReSharper*/ 270 *.[Rr]e[Ss]harper 271 *.DotSettings.user 272 273 # JustCode is a .NET coding add-in 274 .JustCode 275 276 # TeamCity is a build add-in 277 _TeamCity* 278 279 # DotCover is a Code Coverage Tool 280 *.dotCover 281 282 # Visual Studio code coverage results 283 *.coverage 284 *.coveragexml 285 286 # NCrunch 287 _NCrunch_* 288 .*crunch*.local.xml 289 nCrunchTemp_* 290 291 # MightyMoose 292 *.mm.* 293 AutoTest.Net/ 294 295 # Web workbench (sass) 296 .sass-cache/ 297 298 # Installshield output folder 299 [Ee]xpress/ 300 301 # DocProject is a documentation generator add-in 302 DocProject/buildhelp/ 303 DocProject/Help/*.HxT 304 DocProject/Help/*.HxC 305 DocProject/Help/*.hhc 306 DocProject/Help/*.hhk 307 DocProject/Help/*.hhp 308 DocProject/Help/Html2 309 DocProject/Help/html 310 311 # Click-Once directory 312 publish/ 313 314 # Publish Web Output 315 *.[Pp]ublish.xml 316 *.azurePubxml 317 # TODO: Uncomment the next line to ignore your web deploy settings. 318 # By default, sensitive information, such as encrypted password 319 # should be stored in the .pubxml.user file. 320 #*.pubxml 321 *.pubxml.user 322 *.publishproj 323 324 # Microsoft Azure Web App publish settings. Comment the next line if you want to 325 # checkin your Azure Web App publish settings, but sensitive information contained 326 # in these scripts will be unencrypted 327 PublishScripts/ 328 329 # Microsoft Azure Build Output 330 csx/ 331 *.build.csdef 332 333 # Microsoft Azure Emulator 334 ecf/ 335 rcf/ 336 337 # Windows Store app package directories and files 338 AppPackages/ 339 BundleArtifacts/ 340 Package.StoreAssociation.xml 341 _pkginfo.txt 342 343 # Visual Studio cache files 344 # files ending in .cache can be ignored 345 *.[Cc]ache 346 # but keep track of directories ending in .cache 347 !*.[Cc]ache/ 348 349 # Others 350 ClientBin/ 351 ~$* 352 *~ 353 *.dbmdl 354 *.dbproj.schemaview 355 *.jfm 356 *.pfx 357 *.publishsettings 358 orleans.codegen.cs 359 360 # Since there are multiple workflows, uncomment next line to ignore bower_components 361 # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 362 #bower_components/ 363 364 # RIA/Silverlight projects 365 Generated_Code/ 366 367 # Backup & report files from converting an old project file 368 # to a newer Visual Studio version. Backup files are not needed, 369 # because we have git ;-) 370 _UpgradeReport_Files/ 371 Backup*/ 372 UpgradeLog*.XML 373 UpgradeLog*.htm 374 375 # SQL Server files 376 *.mdf 377 *.ldf 378 *.ndf 379 380 # Business Intelligence projects 381 *.rdl.data 382 *.bim.layout 383 *.bim_*.settings 384 385 # Microsoft Fakes 386 FakesAssemblies/ 387 388 # GhostDoc plugin setting file 389 *.GhostDoc.xml 390 391 # Node.js Tools for Visual Studio 392 .ntvs_analysis.dat 393 node_modules/ 394 395 # Typescript v1 declaration files 396 typings/ 397 398 # Visual Studio 6 build log 399 *.plg 400 401 # Visual Studio 6 workspace options file 402 *.opt 403 404 # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 405 *.vbw 406 407 # Visual Studio LightSwitch build output 408 **/*.HTMLClient/GeneratedArtifacts 409 **/*.DesktopClient/GeneratedArtifacts 410 **/*.DesktopClient/ModelManifest.xml 411 **/*.Server/GeneratedArtifacts 412 **/*.Server/ModelManifest.xml 413 _Pvt_Extensions 414 415 # Paket dependency manager 416 .paket/paket.exe 417 paket-files/ 418 419 # FAKE - F# Make 420 .fake/ 421 422 # JetBrains Rider 423 .idea/ 424 *.sln.iml 425 426 # CodeRush 427 .cr/ 428 429 # Python Tools for Visual Studio (PTVS) 430 __pycache__/ 431 *.pyc 432 433 # Cake - Uncomment if you are using it 434 # tools/** 435 # !tools/packages.config 436 437 # Telerik's JustMock configuration file 438 *.jmconfig 439 440 # BizTalk build output 441 *.btp.cs 442 *.btm.cs 443 *.odx.cs 444 *.xsd.cs 445 446 # project-specific 447 *.bak 448 **/resources/* 449 /build 450 /apiserver.local.config 451 e2e.namespace 452 apiserver.crt 453 apiserver.key 454 455 !vendor/** 456 test/e2e/.kube 457 dist/