You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/.dockerignore

4008 lines
84 KiB
Plaintext

#
# Author: Hari Sekhon
# Date: Tue Sep 12 13:06:25 2017 +0200
#
# vim: filetype=conf
#
# ============================================================================ #
# . d o c k e r i g n o r e
# ============================================================================ #
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
# =================================================
# Don't send things you don't need to Docker server and avoid uploading your secrets / keys!!
#
# XXX: RULES:
# - .dockerignore must be at top-level root context from which you invoke 'docker build'
# - unfortunately .dockerignore doesn't match basenames like .gitignore so you need to prefix **/ for recursive matching to be safe
# - Last Match Wins - you must put more specific whitelisting matches after the general exclusion pattern
# ====================================================================
# Smaller more concise .dockerignore files are found in the builds at:
#
2 years ago
# https://github.com/HariSekhon/Dockerfiles
# =========================================================
# This is a huge list of exclusions which covers most cases
#
# XXX: Best Practice - enable '*' ignore and create short concise whitelist of inclusions
#
# *
#
# Second option is to rely on this pretty extensive blacklist, which excludes most known credentials files, all hidden dot files and major RCS repos like Git / Mercurial / Subversion
#
# Sloppy Docker builds which do 'COPY/ADD .' are a ** Security Risk ** - see Dockerfiles repo's tests/ which checks for their existence in all Dockerfile's
#
# https://github.com/HariSekhon/Dockerfiles
# *
# =========================================================================================
# Whitelist - must come after the more general blacklist pattern * above as Last Match Wins
#
# always include package.json and requirements.txt for standard dependency installations on NodeJS and Python
!package.json
!requirements.txt
!LICENSE
# ===============
# Docker specific
# still sent to the daemon as needed to do the job but aren't included in the image by ADD/COPY . commands
**/Dockerfile
**/.dockerignore
**/docker-compose.yml
**/.gitignore
**/.gcloudignore
**/.ssh/
# don't accidentally publish your whole code base via Docker like Twitter Vine did!!
**/.git/
**/.svn/
**/.hg/
**/git/
**/github/
**/gitolite*/
**/gitroot/
**/mercurial/
**/hg/
**/hgroot/
**/svn/
**/svnroot/
**/node_modules/
**/dist/
**/fatpacks/
**/logs/
**/vendor/
**/vagrant/
**/venv/
**/wordlists/
**/pytools_checks/
**/debs/
**/rpms/
**/drive/
**/Google Drive/
**/Dropbox/
# XXX: don't include any hidden files unless we explicitly override and include them with a !.filename
**/.*
# don't include CI configs not covered by ignoring dotfiles
**/Jenkinsfile
**/azure-pipelines.y*ml
**/bitbucket-pipelines.y*ml
**/buddy.y*ml
**/codefresh.y*ml
**/shippable.y*ml
**/wercker.y*ml
**/gocd_config_repo.json
**/jenkins-job.xml
**/hadolint.y*ml
**/scalastyle_config.xml
**/yamllint/
# contains webhook URL which should not be committed publicly
**/buildkite-pipeline*.json
# leave our README.md in case we want to include it in the image but filter out other .md files
*.md
!README.md
# ========================================
# Based on the massive adjacent .gitignore, modified for Docker ignore's Go filepath.Match() function
*#*#
**/*.a
**/*.avi
**/*.bak
**/*.bak.*
**/*.bin
**/*.bkp
**/*.class
**/*.dump
**/*.flv
**/*.kdb
**/*.lock
**/*.log
**/*.macports-saved_*
**/*.mp3
**/*.mp4
**/*.mpeg
**/*.mpg
**/*.o
**/*.orig
**/*.out
**/*.part
**/*.pyc
**/*.pyo
**/*.stderr
**/*.stdout
**/*.swo
**/*.swp
**/*.tmp
**/*.wmv
**/*~
**/tmp.*
**/~*
**/*.doc
**/*.docx
**/*.msg
**/*.pages
**/*.ppt
**/*.pptx
**/*.rtf
**/*.wpd
**/*.wps
**/*.xls
**/*.xlsx
# ============================================================================ #
#
# regenerate all sections below in to a single arg for API call via:
#
# grep '[C]reated by https://' .dockerignore | sed 's,.*/,,' | tr ',' '\n' | sort -u | tr '\n' ',' | sed 's/,$//' | xargs echo gitignore.io_api.sh
#
# then pipe through perl to add recursive prefix '**/':
#
# gitignore.io_api.sh ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh | perl -p -e 's/^([^#\s\/])/**\/$1/; s/^\//**\//' >> .dockerignore
#
# Find new or missing tags you aren't using yet:
#
# grep '[C]reated by https://' .dockerignore | sed 's,.*/,,' | tr ',' '\n' | sort -u | tr '\n' ',' | sed 's/,$//' | gitignore.io_api.sh missing
#
# ============================================================================ #
# Created by https://www.toptal.com/developers/gitignore/api/ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh
# Edit at https://www.toptal.com/developers/gitignore?templates=ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh
### Ansible ###
**/*.retry
### ApacheHadoop ###
**/*.iml
**/*.ipr
**/*.iws
**/*.orig
**/*.rej
**/.idea
**/.svn
**/.classpath
**/.project
**/.settings
**/target
**/hadoop-common-project/hadoop-kms/downloads/
**/hadoop-hdfs-project/hadoop-hdfs/downloads
**/hadoop-hdfs-project/hadoop-hdfs-httpfs/downloads
**/hadoop-common-project/hadoop-common/src/test/resources/contract-test-options.xml
**/hadoop-tools/hadoop-openstack/src/test/resources/contract-test-options.xml
### AppCode ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
**/.idea/**/workspace.xml
**/.idea/**/tasks.xml
**/.idea/**/usage.statistics.xml
**/.idea/**/dictionaries
**/.idea/**/shelf
# Generated files
**/.idea/**/contentModel.xml
# Sensitive or high-churn files
**/.idea/**/dataSources/
**/.idea/**/dataSources.ids
**/.idea/**/dataSources.local.xml
**/.idea/**/sqlDataSources.xml
**/.idea/**/dynamic.xml
**/.idea/**/uiDesigner.xml
**/.idea/**/dbnavigator.xml
# Gradle
**/.idea/**/gradle.xml
**/.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
**/cmake-build-*/
# Mongo Explorer plugin
**/.idea/**/mongoSettings.xml
# File-based project format
# IntelliJ
**/out/
# mpeltonen/sbt-idea plugin
**/.idea_modules/
# JIRA plugin
**/atlassian-ide-plugin.xml
# Cursive Clojure plugin
**/.idea/replstate.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
**/com_crashlytics_export_strings.xml
**/crashlytics.properties
**/crashlytics-build.properties
**/fabric.properties
# Editor-based Rest Client
**/.idea/httpRequests
# Android studio 3.1+ serialized cache file
**/.idea/caches/build_file_checksums.ser
### AppCode Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
**/.idea/**/sonarlint/
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
**/.idea/**/sonarIssues.xml
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
**/.idea/**/markdown-navigator.xml
**/.idea/**/markdown-navigator-enh.xml
**/.idea/**/markdown-navigator/
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
**/.idea/$CACHE_FILE$
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
**/.idea/codestream.xml
### AppEngine ###
# Google App Engine generated folder
**/appengine-generated/
### Archive ###
### Mostly from https://en.wikipedia.org/wiki/List_of_archive_formats
## Archiving only
# The traditional archive format on Unix-like systems, now used mainly for the creation of static libraries.
**/*.a
**/*.ar
# RPM files consist of metadata concatenated with (usually) a cpio archive. Newer RPM systems also support other archives, as cpio is becoming obsolete. cpio is also used with initramfs.
**/*.cpio
# A self-extracting archive that uses the Bourne shell (sh).
**/*.shar
# A system for storing multiple files. LBR archives typically contained files processed by SQ, or the archive itself was compressed with SQ. LBR archives that were compressed with SQ ended with the extension .LQR
**/*.LBR
# An archive format originally used mainly for archiving and distribution of the exact, nearly-exact, or custom-modified contents of an optical storage medium such as a CD-ROM or DVD-ROM. However, it can be used to archive the contents of other storage media, selected partitions, folders, and/or files. The resulting archive is typically optimized for convenient rendering to (re-)writable CD or DVD media.
**/*.iso
# A library format used primarily on the Commodore 64 and 128 lines of computers. This bears no resemblance to the DOS LBR format. While library files were quick to implement (a number of programs exist to work with them) they are crippled in that they cannot grow with use: once a file has been created it cannot be amended (files added, changed or deleted) without recreating the entire file.
**/*.lbr
# An archive format used by Mozilla for storing binary diffs. Used in conjunction with bzip2.
**/*.mar
# A common archive format used on Unix-like systems. Generally used in conjunction with compressors such as gzip, bzip2, compress or xz to create .tar.gz, .tar.bz2, .tar.Z or tar.xz files.
**/*.tar
# Package managers
# Red Hat Package Manager
**/*.rpm
# Debian package
**/*.deb
# MicroSoft Installer
**/*.msi
**/*.msm
**/*.msp
# Mozilla package installer
**/*.xpi
# Ruby Package
**/*.gem
### Archives ###
# It's better to unpack these files and commit the raw source because
# git has its own built in compression methods.
**/*.7z
**/*.jar
**/*.rar
**/*.zip
**/*.gz
**/*.gzip
**/*.tgz
**/*.bzip
**/*.bzip2
**/*.bz2
**/*.xz
**/*.lzma
**/*.cab
**/*.xar
# Packing-only formats
# Package management formats
**/*.dmg
**/*.egg
**/*.txz
### ArchLinuxPackages ###
**/*.tar.*
**/*.exe
**/*.log
**/*.log.*
**/*.sig
**/pkg/
**/src/
### Audio ###
**/*.aif
**/*.iff
**/*.m3u
**/*.m4a
**/*.mid
**/*.mp3
**/*.mpa
**/*.ra
**/*.wav
**/*.wma
**/*.ogg
**/*.flac
### Autotools ###
# http://www.gnu.org/software/automake
**/Makefile.in
**/ar-lib
**/mdate-sh
**/py-compile
**/test-driver
**/ylwrap
**/.deps/
# http://www.gnu.org/software/autoconf
**/autom4te.cache
**/autoscan.log
**/autoscan-*.log
**/aclocal.m4
**/compile
**/config.guess
**/config.h.in
**/config.log
**/config.status
**/config.sub
**/configure
**/configure.scan
**/depcomp
**/install-sh
**/missing
**/stamp-h1
# https://www.gnu.org/software/libtool/
**/ltmain.sh
# http://www.gnu.org/software/texinfo
**/texinfo.tex
# http://www.gnu.org/software/m4/
**/m4/libtool.m4
**/m4/ltoptions.m4
**/m4/ltsugar.m4
**/m4/ltversion.m4
**/m4/lt~obsolete.m4
# Generated Makefile
# (meta build system like autotools,
# can automatically generate from config.status script
# (which is called by configure script))
**/Makefile
### Autotools Patch ###
### Backup ###
**/*.bak
**/*.gho
**/*.ori
**/*.tmp
### Basic ###
# Apples Build
**/*.build
**/*.apples
# Initialized files
**/*.ini
**/*.basic
### BitTorrent ###
**/*.torrent
### C ###
# Prerequisites
**/*.d
# Object files
**/*.o
**/*.ko
**/*.obj
**/*.elf
# Linker output
**/*.ilk
**/*.map
**/*.exp
# Precompiled Headers
**/*.gch
**/*.pch
# Libraries
**/*.lib
**/*.la
**/*.lo
# Shared objects (inc. Windows DLLs)
**/*.dll
**/*.so
**/*.so.*
**/*.dylib
# Executables
**/*.out
**/*.app
**/*.i*86
**/*.x86_64
**/*.hex
# Debug files
**/*.dSYM/
**/*.su
**/*.idb
**/*.pdb
# Kernel Module Compile Results
**/*.mod*
**/*.cmd
**/.tmp_versions/
**/modules.order
**/Module.symvers
**/Mkfile.old
**/dkms.conf
### C++ ###
# Prerequisites
# Compiled Object files
**/*.slo
# Precompiled Headers
# Compiled Dynamic libraries
# Fortran module files
**/*.mod
**/*.smod
# Compiled Static libraries
**/*.lai
# Executables
### Zsh ###
# Zsh compiled script + zrecompile backup
**/*.zwc
**/*.zwc.old
# Zsh completion-optimization dumpfile
**/*zcompdump*
# Zsh zcalc history
**/.zcalc_history
# A popular plugin manager's files
**/._zplugin
**/.zplugin_lstupd
# zdharma/zshelldoc tool's files
**/zsdoc/data
# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files
# (when set-up to store the history in the local directory)
**/.directory_history
# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files
# (for Zsh plugins using Python)
**/.venv
# Zunit tests' output
**/tests/_output/*
**/!/tests/_output/.gitkeep
### certificates ###
**/*.pem
**/*.key
**/*.crt
**/*.cer
**/*.priv
### ChefCookbook ###
**/.vagrant
**/cookbooks
# Bundler
**/bin/*
**/.bundle/*
**/.kitchen/
**/.kitchen.local.yml
**/.kitchen.*.local.yml
**/kitchen.local.yml
**/kitchen.*.local.yml
### CMake ###
**/CMakeLists.txt.user
**/CMakeCache.txt
**/CMakeFiles
**/CMakeScripts
**/Testing
**/cmake_install.cmake
**/install_manifest.txt
**/compile_commands.json
**/CTestTestfile.cmake
**/_deps
### CMake Patch ###
# External projects
**/*-prefix/
### Clojure ###
**/pom.xml
**/pom.xml.asc
**/*.class
**/lib/
**/classes/
**/target/
**/checkouts/
**/.lein-deps-sum
**/.lein-repl-history
**/.lein-plugins/
**/.lein-failures
**/.nrepl-port
**/.cpcache/
### Code-Java ###
# Language Support for Java(TM) by Red Hat extension for Visual Studio Code - https://marketplace.visualstudio.com/items?itemName=redhat.java
**/factoryConfiguration.json
### Cloud9 ###
# Cloud9 IDE - http://c9.io
**/.c9revisions
**/.c9
### Compressed ###
**/*.pkg
**/*.sit
**/*.sitx
**/*.zipx
### CompressedArchive ###
## Archiving and compression
# Open source file format. Used by 7-Zip.
# Mac OS X, restoration on different platforms is possible although not immediate Yes Based on 7z. Preserves Spotlight metadata, resource forks, owner/group information, dates and other data which would be otherwise lost with compression.
**/*.s7z
# Old archive versions only Proprietary format
**/*.ace
# A format that compresses and doubly encrypt the data (AES256 and CAS256) avoiding brute force attacks, also hide files in an AFA file. It has two ways to safeguard data integrity and subsequent repair of the file if has an error (repair with AstroA2P (online) or Astrotite (offline)).
**/*.afa
# A mainly Korean format designed for very large archives.
**/*.alz
# Android application package (variant of JAR file format).
**/*.apk
# ??
**/*.arc
# Originally DOS, now multiple
**/*.arj
# Open archive format, used by B1 Free Archiver (http://dev.b1.org/standard/archive-format.html)
**/*.b1
# Binary Archive with external header
**/*.ba
# Proprietary format from the ZipTV Compression Components
**/*.bh
# The Microsoft Windows native archive format, which is also used by many commercial installers such as InstallShield and WISE.
# Originally DOS, now DOS and Windows Created by Yaakov Gringeler; released last in 2003 (Compressia 1.0.0.1 beta), now apparently defunct. Free trial of 30 days lets user create and extract archives; after that it is possible to extract, but not to create.
**/*.car
# Open source file format.
**/*.cfs
# Compact Pro archive, a common archiver used on Mac platforms until about Mac OS 7.5.x. Competed with StuffIt; now obsolete.
**/*.cpt
# Windows, Unix-like, Mac OS X Open source file format. Files are compressed individually with either gzip, bzip2 or lzo.
**/*.dar
# DiskDoubler Mac OS obsolete
**/*.dd
# ??
**/*.dgc
# Apple Disk Image upports "Internet-enabled" disk images, which, once downloaded, are automatically decompressed, mounted, have the contents extracted, and thrown away. Currently, Safari is the only browser that supports this form of extraction; however, the images can be manually extracted as well. This format can also be password-protected or encrypted with 128-bit or 256-bit AES encryption.
# Enterprise Java Archive archive
**/*.ear
# ETSoft compressed archive
# The predecessor of DGCA.
**/*.gca
# Originally DOS Yes, but may be covered by patents DOS era format; uses arithmetic/Markov coding
**/*.ha
# MS Windows HKI
**/*.hki
# Produced by ICEOWS program. Excels at text file compression.
**/*.ice
# Java archive, compatible with ZIP files
# Open sourced archiver with compression using the PAQ family of algorithms and optional encryption.
**/*.kgb
# Originally DOS, now multiple Multiple Yes The standard format on Amiga.
**/*.lzh
**/*.lha
# Archiver originally used on The Amiga. Now copied by Microsoft to use in their .cab and .chm files.
**/*.lzx
# file format from NoGate Consultings, a rival from ARC-Compressor.
**/*.pak
# A disk image archive format that supports several compression methods as well as splitting the archive into smaller pieces.
**/*.partimg
# An experimental open source packager (http://mattmahoney.net/dc)
**/*.paq*
# Open source archiver supporting authenticated encryption, volume spanning, customizable object level and volume level integrity checks (form CRCs to SHA-512 and Whirlpool hashes), fast deflate based compression
**/*.pea
# The format from the PIM - a freeware compression tool by Ilia Muraviev. It uses an LZP-based compression algorithm with set of filters for executable, image and audio files.
**/*.pim
# PackIt Mac OS obsolete
**/*.pit
# Used for data in games written using the Quadruple D library for Delphi. Uses byte pair compression.
**/*.qda
# A proprietary archive format, second in popularity to .zip files.
# The format from a commercial archiving package. Odd among commercial packages in that they focus on incorporating experimental algorithms with the highest possible compression (at the expense of speed and memory), such as PAQ, PPMD and PPMZ (PPMD with unlimited-length strings), as well as a proprietary algorithms.
**/*.rk
# Self Dissolving ARChive Commodore 64, Commodore 128 Commodore 64, Commodore 128 Yes SDAs refer to Self Dissolving ARC files, and are based on the Commodore 64 and Commodore 128 versions of ARC, originally written by Chris Smeets. While the files share the same extension, they are not compatible between platforms. That is, an SDA created on a Commodore 64 but run on a Commodore 128 in Commodore 128 mode will crash the machine, and vice versa. The intended successor to SDA is SFX.
**/*.sda
# A pre-Mac OS X Self-Extracting Archive format. StuffIt, Compact Pro, Disk Doubler and others could create .sea files, though the StuffIt versions were the most common.
**/*.sea
# Scifer Archive with internal header
**/*.sen
# Commodore 64, Commodore 128 SFX is a Self Extracting Archive which uses the LHArc compression algorithm. It was originally developed by Chris Smeets on the Commodore platform, and runs primarily using the CS-DOS extension for the Commodore 128. Unlike its predecessor SDA, SFX files will run on both the Commodore 64 and Commodore 128 regardless of which machine they were created on.
**/*.sfx
# An archive format designed for the Apple II series of computers. The canonical implementation is ShrinkIt, which can operate on disk images as well as files. Preferred compression algorithm is a combination of RLE and 12-bit LZW. Archives can be manipulated with the command-line NuLib tool, or the Windows-based CiderPress.
**/*.shk
# A compression format common on Apple Macintosh computers. The free StuffIt Expander is available for Windows and OS X.
# The replacement for the .sit format that supports more compression methods, UNIX file permissions, long file names, very large files, more encryption options, data specific compressors (JPEG, Zip, PDF, 24-bit image, MP3). The free StuffIt Expander is available for Windows and OS X.
# A royalty-free compressing format
**/*.sqx
# The "tarball" format combines tar archives with a file-based compression scheme (usually gzip). Commonly used for source and binary distribution on Unix-like platforms, widely available elsewhere.
**/*.tar.gz
**/*.tar.Z
**/*.tar.bz2
**/*.tbz2
**/*.tar.lzma
**/*.tlz
# UltraCompressor 2.3 was developed to act as an alternative to the then popular PKZIP application. The main feature of the application is its ability to create large archives. This means that compressed archives with the UC2 file extension can hold almost 1 million files.
**/*.uc
**/*.uc0
**/*.uc2
**/*.ucn
**/*.ur2
**/*.ue2
# Based on PAQ, RZM, CSC, CCM, and 7zip. The format consists of a PAQ, RZM, CSC, or CCM compressed file and a manifest with compression settings stored in a 7z archive.
**/*.uca
# A high compression rate archive format originally for DOS.
**/*.uha
# Web Application archive (Java-based web app)
**/*.war
# File-based disk image format developed to deploy Microsoft Windows.
**/*.wim
# XAR
# Native format of the Open Source KiriKiri Visual Novel engine. Uses combination of block splitting and zlib compression. The filenames and pathes are stored in UTF-16 format. For integrity check, the Adler-32 hashsum is used. For many commercial games, the files are encrypted (and decoded on runtime) via so-called "cxdec" module, which implements xor-based encryption.
**/*.xp3
# Yamazaki zipper archive. Compression format used in DeepFreezer archiver utility created by Yamazaki Satoshi. Read and write support exists in TUGZip, IZArc and ZipZag
**/*.yz1
# The most widely used compression format on Microsoft Windows. Commonly used on Macintosh and Unix systems as well.
# application/x-zoo zoo Multiple Multiple Yes
**/*.zoo
# Journaling (append-only) archive format with rollback capability. Supports deduplication and incremental update based on last-modified dates. Multi-threaded. Compresses in LZ77, BWT, and context mixing formats. Open source.
**/*.zpaq
# Archiver with a compression algorithm based on the Burrows-Wheeler transform method.
**/*.zz
### Compression ###
### From https://en.wikipedia.org/wiki/List_of_archive_formats
## Compression only
# An open source, patent- and royalty-free compression format. The compression algorithm is a Burrows-Wheeler transform followed by a move-to-front transform and finally Huffman coding
# Old compressor for QNX4 OS. The compression algorithm is a modified LZSS, with an adaptive Huffman coding.
**/*.F
# GNU Zip, the primary compression format used by Unix-like systems. The compression algorithm is DEFLATE.
# An alternate LZMA algorithm implementation, with support for checksums and ident bytes.
**/*.lz
# The LZMA compression algorithm as used by 7-Zip
# An implementation of the LZO data compression algorithm
**/*.lzo
# A compression program designed to do particularly well on very large files containing long distance redundancy.
**/*.rz
# Windows compress/decompress- Linux and Mac OS X decompress only A compression program designed to do high compression on SF2 files (SoundFont)
**/*.sfark
# A compression format invented by Google and open-sourced in 2011. Snappy aims for very high speeds, reasonable compression, and maximum stability rather than maximum compression or compatibility with any other compression library.
**/*.sz
# Squeeze: A program which compressed files. A file which was "squeezed" had the middle initial of the name changed to "Q", so that a squeezed text file would end with .TQT, a squeezed executable would end with .CQM or .EQE. Typically used with .LBR archives, either by storing the squeezed files in the archive, or by storing the files decompressed and then compressing the archive, which would have a name ending in ".LQR".
**/*.?Q?
# A compression program written by Steven Greenberg implementing the LZW algorithm. For several years in the CP/M world when no implementation was available of ARC, CRUNCHed files stored in .LBR archives were very popular. CRUNCH's implementation of LZW had a somewhat unique feature of modifying and occasionally clearing the code table in memory when it became full, resulting in a few percent better compression on many files.
**/*.?Z?
# A compression format using LZMA2 to yield very high compression ratios.
# The traditional Huffman coding compression format.
**/*.z
# The traditional LZW compression format.
**/*.Z
# Joke compression program, actually increasing file size
**/*.infl
# Compression format(s) used by some DOS and Windows install programs. MS-DOS includes expand.exe to decompress its install files. The compressed files are created with a matching compress.exe command. The compression algorithm is LZSS.
**/*.??_
### Data ###
**/*.csv
**/*.dat
**/*.efx
**/*.gbr
**/*.pps
**/*.ppt
**/*.pptx
**/*.sdf
**/*.tax2010
**/*.vcf
**/*.xml
### Code ###
**/.vscode/*
**/!.vscode/settings.json
**/!.vscode/tasks.json
**/!.vscode/launch.json
**/!.vscode/extensions.json
**/*.code-workspace
### DataRecovery ###
## Data recovery
# File format used by dvdisaster to be used for data recovery when discs become damaged or partially unreadable.
**/*.ecc
# File format used in conjunction with any archive format to provide redundancy and data recovery, most often in newsgroup distribution of binary files.
**/*.par
**/*.par2
### Diff ###
**/*.patch
**/*.diff
### direnv ###
**/.direnv
**/.envrc
### CodeBlocks ###
# specific to CodeBlocks IDE
**/*.layout
**/*.depend
# generated directories
**/bin/
**/obj/
### DocFx ###
**/.cache
**/**/_site/
### Docpress ###
# docpress documentation generator: https://docpress.github.io/index.html
**/_docpress/
### Docz ###
**/.docz
### dotenv ###
**/.env
### DotfilesSh ###
**/local-patch
**/patched-src
### DotSettings ###
**/*.DotSettings
### Dropbox ###
# Dropbox settings and caches
**/.dropbox
**/.dropbox.attr
**/.dropbox.cache
### Eclipse ###
**/.metadata
**/tmp/
**/*.swp
**/*~.nib
**/local.properties
**/.settings/
**/.loadpath
**/.recommenders
# External tool builders
**/.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
**/*.launch
# PyDev specific (Python IDE for Eclipse)
**/*.pydevproject
# CDT-specific (C/C++ Development Tooling)
**/.cproject
# CDT- autotools
**/.autotools
# Java annotation processor (APT)
**/.factorypath
# PDT-specific (PHP Development Tools)
**/.buildpath
# sbteclipse plugin
**/.target
# Tern plugin
**/.tern-project
# TeXlipse plugin
**/.texlipse
# STS (Spring Tool Suite)
**/.springBeans
# Code Recommenders
**/.recommenders/
# Annotation Processing
**/.apt_generated/
**/.apt_generated_test/
# Scala IDE specific (Scala & Java development for Eclipse)
**/.cache-main
**/.scala_dependencies
**/.worksheet
# Uncomment this line if you wish to ignore the project description file.
# Typically, this file would be tracked if it contains build/dependency configurations:
#.project
### Eclipse Patch ###
# Spring Boot Tooling
**/.sts4-cache/
### Emacs ###
# -*- mode: gitignore; -*-
**/*~
**/\#*\#
**/.emacs.desktop
**/.emacs.desktop.lock
**/*.elc
**/auto-save-list
**/tramp
**/.\#*
# Org-mode
**/.org-id-locations
**/*_archive
# flymake-mode
**/*_flymake.*
# eshell files
**/eshell/history
**/eshell/lastdir
# elpa packages
**/elpa/
# reftex files
**/*.rel
# AUCTeX auto folder
**/auto/
# cask packages
**/.cask/
**/dist/
# Flycheck
**/flycheck_*.el
# server auth directory
**/server/
# projectiles files
**/.projectile
# directory configuration
**/.dir-locals.el
# network security
**/network-security.data
### Database ###
**/*.accdb
**/*.db
**/*.dbf
**/*.mdb
**/*.sqlite3
### Executable ###
**/*.bat
**/*.cgi
**/*.com
**/*.gadget
**/*.pif
**/*.vb
**/*.wsf
### Firebase ###
**/**/node_modules/*
**/**/.firebaserc
### Firebase Patch ###
**/.runtimeconfig.json
**/.firebase/
### Flask ###
**/instance/*
**/!instance/.gitignore
**/.webassets-cache
### Flask.Python Stack ###
# Byte-compiled / optimized / DLL files
**/__pycache__/
**/*.py[cod]
**/*$py.class
# C extensions
# Distribution / packaging
**/.Python
**/build/
**/develop-eggs/
**/downloads/
**/eggs/
**/.eggs/
**/lib/
**/lib64/
**/parts/
**/sdist/
**/var/
**/wheels/
**/pip-wheel-metadata/
**/share/python-wheels/
**/*.egg-info/
**/.installed.cfg
**/MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
**/*.manifest
**/*.spec
# Installer logs
**/pip-log.txt
**/pip-delete-this-directory.txt
# Unit test / coverage reports
**/htmlcov/
**/.tox/
**/.nox/
**/.coverage
**/.coverage.*
**/nosetests.xml
**/coverage.xml
**/*.cover
**/*.py,cover
**/.hypothesis/
**/.pytest_cache/
**/pytestdebug.log
# Translations
**/*.mo
**/*.pot
# Django stuff:
**/local_settings.py
**/db.sqlite3
**/db.sqlite3-journal
# Flask stuff:
**/instance/
# Scrapy stuff:
**/.scrapy
# Sphinx documentation
**/docs/_build/
**/doc/_build/
# PyBuilder
**/target/
# Jupyter Notebook
**/.ipynb_checkpoints
# IPython
**/profile_default/
**/ipython_config.py
# pyenv
**/.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
**/__pypackages__/
# Celery stuff
**/celerybeat-schedule
**/celerybeat.pid
# SageMath parsed files
**/*.sage.py
# Environments
**/env/
**/venv/
**/ENV/
**/env.bak/
**/venv.bak/
**/pythonenv*
# Spyder project settings
**/.spyderproject
**/.spyproject
# Rope project settings
**/.ropeproject
# mkdocs documentation
**/site
# mypy
**/.mypy_cache/
**/.dmypy.json
**/dmypy.json
# Pyre type checker
**/.pyre/
# pytype static type analyzer
**/.pytype/
# profiling data
**/.prof
### Git ###
# Created by git for backups. To disable backups in Git:
# $ git config --global mergetool.keepBackup false
# Created by git when using merge tools for conflicts
**/*.BACKUP.*
**/*.BASE.*
**/*.LOCAL.*
**/*.REMOTE.*
**/*_BACKUP_*.txt
**/*_BASE_*.txt
**/*_LOCAL_*.txt
**/*_REMOTE_*.txt
### GitBook ###
# Node rules:
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
**/.grunt
## Dependency directory
## Commenting this out is preferred by some people, see
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
**/node_modules
# Book build output
**/_book
# eBook build output
**/*.epub
**/*.mobi
**/*.pdf
### Go ###
# Binaries for programs and plugins
**/*.exe~
# Test binary, built with `go test -c`
**/*.test
# Output of the go coverage tool, specifically when used with LiteIDE
# Dependency directories (remove the comment below to include it)
# vendor/
### Go Patch ###
**/vendor/
**/Godeps/
### GPG ###
**/secring.*
### DiskImage ###
**/*.toast
**/*.vcd
### Grails ###
# .gitignore for Grails 1.2 and 1.3
# Although this should work for most versions of grails, it is
# suggested that you use the "grails integrate-with --git" command
# to generate your .gitignore file.
# web application files
**/web-app/WEB-INF/classes
# default HSQL database files for production mode
**/prodDb.*
# general HSQL database files
**/*Db.properties
**/*Db.script
# logs
**/stacktrace.log
**/test/reports
**/logs
# project release file
**/*.war
# plugin release files
**/*.zip
**/plugin.xml
# older plugin install locations
**/plugins
**/web-app/plugins
# "temporary" build files
**/target
### Groovy ###
# .gitignore created from Groovy contributors in https://github.com/apache/groovy/blob/master/.gitignore
**/user.gradle
**/.gradle/
**/*.DS_Store
**/.shelf
### grunt ###
# Grunt usually compiles files inside this directory
# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
**/.tmp/
### Haskell ###
**/dist
**/dist-*
**/cabal-dev
**/*.hi
**/*.hie
**/*.chi
**/*.chs.h
**/*.dyn_o
**/*.dyn_hi
**/.hpc
**/.hsenv
**/.cabal-sandbox/
**/cabal.sandbox.config
**/*.prof
**/*.aux
**/*.hp
**/*.eventlog
**/.stack-work/
**/cabal.project.local
**/cabal.project.local~
**/.HTF/
**/.ghc.environment.*
### Helm ###
# Chart dependencies
**/**/charts/*.tgz
### Homebrew ###
**/Brewfile.lock.json
### Hugo ###
# Generated files by hugo
**/public/
**/resources/_gen/
**/hugo_stats.json
# Executable may be added to repository
**/hugo.exe
**/hugo.darwin
**/hugo.linux
### Images ###
# JPEG
**/*.jpg
**/*.jpeg
**/*.jpe
**/*.jif
**/*.jfif
**/*.jfi
# JPEG 2000
**/*.jp2
**/*.j2k
**/*.jpf
**/*.jpx
**/*.jpm
**/*.mj2
# JPEG XR
**/*.jxr
**/*.hdp
**/*.wdp
# Graphics Interchange Format
**/*.gif
# RAW
**/*.raw
# Web P
**/*.webp
# Portable Network Graphics
**/*.png
# Animated Portable Network Graphics
**/*.apng
# Multiple-image Network Graphics
**/*.mng
# Tagged Image File Format
**/*.tiff
**/*.tif
# Scalable Vector Graphics
**/*.svg
**/*.svgz
# Portable Document Format
# X BitMap
**/*.xbm
# BMP
**/*.bmp
**/*.dib
# ICO
**/*.ico
# 3D Images
**/*.3dm
**/*.max
### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### Intellij Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### Intellij+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
**/.idea/
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
**/modules.xml
**/.idea/misc.xml
# Sonarlint plugin
**/.idea/sonarlint
### Intellij+iml ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### Intellij+iml Patch ###
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
### Java ###
# Compiled class file
# Log file
# BlueJ files
**/*.ctxt
# Mobile Tools for Java (J2ME)
**/.mtj.tmp/
# Package Files #
**/*.nar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
**/hs_err_pid*
### Java-Web ###
## ignoring target file
### JEnv ###
# JEnv local Java version configuration file
**/.java-version
# Used by previous versions of JEnv
**/.jenv-version
### JetBrains ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### JetBrains Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
### JetBrains+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### JetBrains+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
# Sonarlint plugin
### JetBrains+iml ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### JetBrains+iml Patch ###
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
### JMeter ###
# JMeter common ignore files
# http://jmeter.apache.org/
# Ignore Summary/Aggregrate reports
**/*.jtl
# Ignore log files
# Ignore customized user.properties
**/user.properties
### Erlang ###
**/.eunit
**/*.beam
**/*.plt
**/erl_crash.dump
**/.concrete/DEV_MODE
# rebar 2.x
**/.rebar
**/rel/example_project
**/ebin/*.beam
**/deps
# rebar 3
**/.rebar3
**/_build/
**/_checkouts/
### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/
**/*/.ipynb_checkpoints/*
# IPython
# Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/
### Kotlin ###
# Compiled class file
# Log file
# BlueJ files
# Mobile Tools for Java (J2ME)
# Package Files #
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
### LAMP ###
# LAMP Stack Base
### LAMP.Linux Stack ###
# temporary files which can be created if a process still has a handle open of a deleted file
**/.fuse_hidden*
# KDE directory preferences
**/.directory
# Linux trash folder which might appear on any partition or disk
**/.Trash-*
# .nfs files are created when an open file is removed but is still being accessed
**/.nfs*
### LAMP.PHP Stack ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### LaTeX ###
## Core latex/pdflatex auxiliary files:
**/*.lof
**/*.lot
**/*.fls
**/*.toc
**/*.fmt
**/*.fot
**/*.cb
**/*.cb2
**/.*.lb
## Intermediate documents:
**/*.dvi
**/*.xdv
**/*-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf
## Generated if empty string is given at "Please type another file name for output:"
**/.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
**/*.bbl
**/*.bcf
**/*.blg
**/*-blx.aux
**/*-blx.bib
**/*.run.xml
## Build tool auxiliary files:
**/*.fdb_latexmk
**/*.synctex
**/*.synctex(busy)
**/*.synctex.gz
**/*.synctex.gz(busy)
**/*.pdfsync
## Build tool directories for auxiliary files
# latexrun
**/latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
**/*.alg
**/*.loa
# achemso
**/acs-*.bib
# amsthm
**/*.thm
# beamer
**/*.nav
**/*.pre
**/*.snm
**/*.vrb
# changes
**/*.soc
# comment
**/*.cut
# cprotect
# elsarticle (documentclass of Elsevier journals)
**/*.spl
# endnotes
**/*.ent
# fixme
**/*.lox
# feynmf/feynmp
**/*.mf
**/*.mp
**/*.t[1-9]
**/*.t[1-9][0-9]
**/*.tfm
#(r)(e)ledmac/(r)(e)ledpar
**/*.end
**/*.?end
**/*.[1-9]
**/*.[1-9][0-9]
**/*.[1-9][0-9][0-9]
**/*.[1-9]R
**/*.[1-9][0-9]R
**/*.[1-9][0-9][0-9]R
**/*.eledsec[1-9]
**/*.eledsec[1-9]R
**/*.eledsec[1-9][0-9]
**/*.eledsec[1-9][0-9]R
**/*.eledsec[1-9][0-9][0-9]
**/*.eledsec[1-9][0-9][0-9]R
# glossaries
**/*.acn
**/*.acr
**/*.glg
**/*.glo
**/*.gls
**/*.glsdefs
**/*.lzs
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist
# gnuplottex
**/*-gnuplottex-*
# gregoriotex
**/*.gaux
**/*.gtex
# htlatex
**/*.4ct
**/*.4tc
**/*.idv
**/*.lg
**/*.trc
**/*.xref
# hyperref
**/*.brf
# knitr
**/*-concordance.tex
# TODO Comment the next line if you want to keep your tikz graphics files
**/*.tikz
**/*-tikzDictionary
# listings
**/*.lol
# luatexja-ruby
**/*.ltjruby
# makeidx
**/*.idx
**/*.ilg
**/*.ind
# minitoc
**/*.maf
**/*.mlf
**/*.mlt
**/*.mtc
**/*.mtc[0-9]*
**/*.slf[0-9]*
**/*.slt[0-9]*
**/*.stc[0-9]*
# minted
**/_minted*
**/*.pyg
# morewrites
**/*.mw
# nomencl
**/*.nlg
**/*.nlo
**/*.nls
# pax
**/*.pax
# pdfpcnotes
**/*.pdfpc
# sagetex
**/*.sagetex.sage
**/*.sagetex.py
**/*.sagetex.scmd
# scrwfile
**/*.wrt
# sympy
**/*.sout
**/*.sympy
**/sympy-plots-for-*.tex/
# pdfcomment
**/*.upa
**/*.upb
# pythontex
**/*.pytxcode
**/pythontex-files-*/
# tcolorbox
**/*.listing
# thmtools
**/*.loe
# TikZ & PGF
**/*.dpth
**/*.md5
**/*.auxlock
# todonotes
**/*.tdo
# vhistory
**/*.hst
**/*.ver
# easy-todo
**/*.lod
# xcolor
**/*.xcp
# xmpincl
**/*.xmpi
# xindy
**/*.xdy
# xypic precompiled matrices and outlines
**/*.xyc
**/*.xyd
# endfloat
**/*.ttt
**/*.fff
# Latexian
**/TSWLatexianTemp*
## Editors:
# WinEdt
**/*.sav
# Texpad
**/.texpadtmp
# LyX
**/*.lyx~
# Kile
**/*.backup
# gummi
**/.*.swp
# KBibTeX
**/*~[0-9]*
# TeXnicCenter
**/*.tps
# auto folder when using emacs and auctex
**/./auto/*
**/*.el
# expex forward references with \gathertags
**/*-tags.tex
# standalone packages
**/*.sta
# Makeindex log files
**/*.lpz
# REVTeX puts footnotes in the bibliography by default, unless the nofootinbib
# option is specified. Footnotes are the stored in a file with suffix Notes.bib.
# Uncomment the next line to have this generated file ignored.
#*Notes.bib
### LaTeX Patch ###
# LIPIcs / OASIcs
**/*.vtc
# glossaries
**/*.glstex
### Less ###
**/*.less
### Linux ###
# temporary files which can be created if a process still has a handle open of a deleted file
# KDE directory preferences
# Linux trash folder which might appear on any partition or disk
# .nfs files are created when an open file is removed but is still being accessed
### Lua ###
# Compiled Lua sources
**/luac.out
# luarocks build files
**/*.src.rock
# Object files
**/*.os
# Precompiled Headers
# Libraries
**/*.def
# Shared objects (inc. Windows DLLs)
# Executables
### macOS ###
# General
**/.DS_Store
**/.AppleDouble
**/.LSOverride
# Icon must end with two \r
**/Icon
# Thumbnails
**/._*
# Files that might appear in the root of a volume
**/.DocumentRevisions-V100
**/.fseventsd
**/.Spotlight-V100
**/.TemporaryItems
**/.Trashes
**/.VolumeIcon.icns
**/.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
**/.AppleDB
**/.AppleDesktop
**/Network Trash Folder
**/Temporary Items
**/.apdisk
### MATLAB ###
# Windows default autosave extension
**/*.asv
# OSX / *nix default autosave extension
**/*.m~
# Compiled MEX binaries (all platforms)
**/*.mex*
# Packaged app and toolbox files
**/*.mlappinstall
**/*.mltbx
# Generated helpsearch folders
**/helpsearch*/
# Simulink code generation folders
**/slprj/
**/sccprj/
# Matlab code generation folders
**/codegen/
# Simulink autosave extension
**/*.autosave
# Simulink cache files
**/*.slxc
# Octave session info
**/octave-workspace
### Maven ###
**/pom.xml.tag
**/pom.xml.releaseBackup
**/pom.xml.versionsBackup
**/pom.xml.next
**/release.properties
**/dependency-reduced-pom.xml
**/buildNumber.properties
**/.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
**/.mvn/wrapper/maven-wrapper.jar
### Mercurial ###
**/.hg/
**/.hgignore
**/.hgsigs
**/.hgsub
**/.hgsubstate
**/.hgtags
### MicrosoftOffice ###
# Word temporary
**/~$*.doc*
# Word Auto Backup File
**/Backup of *.doc*
# Excel temporary
**/~$*.xls*
# Excel Backup File
**/*.xlk
# PowerPoint temporary
**/~$*.ppt*
# Visio autosave temporary files
**/*.~vsd*
### Node ###
# Logs
**/logs
**/npm-debug.log*
**/yarn-debug.log*
**/yarn-error.log*
**/lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
**/report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
**/pids
**/*.pid
**/*.seed
**/*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
**/lib-cov
# Coverage directory used by tools like istanbul
**/coverage
**/*.lcov
# nyc test coverage
**/.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
# Bower dependency directory (https://bower.io/)
**/bower_components
# node-waf configuration
**/.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
**/build/Release
# Dependency directories
**/node_modules/
**/jspm_packages/
# TypeScript v1 declaration files
**/typings/
# TypeScript cache
**/*.tsbuildinfo
# Optional npm cache directory
**/.npm
# Optional eslint cache
**/.eslintcache
# Microbundle cache
**/.rpt2_cache/
**/.rts2_cache_cjs/
**/.rts2_cache_es/
**/.rts2_cache_umd/
# Optional REPL history
**/.node_repl_history
# Output of 'npm pack'
# Yarn Integrity file
**/.yarn-integrity
# dotenv environment variables file
**/.env.test
**/.env*.local
# parcel-bundler cache (https://parceljs.org/)
**/.parcel-cache
# Next.js build output
**/.next
# Nuxt.js build / generate output
**/.nuxt
# Gatsby files
**/.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
**/.vuepress/dist
# Serverless directories
**/.serverless/
# FuseBox cache
**/.fusebox/
# DynamoDB Local files
**/.dynamodb/
# TernJS port file
**/.tern-port
# Stores VSCode versions used for testing VSCode extensions
**/.vscode-test
### Octave ###
# Windows default autosave extension
# OSX / *nix default autosave extension
# Compiled MEX binaries (all platforms)
# Packaged app and toolbox files
# Generated helpsearch folders
# Simulink code generation folders
# Matlab code generation folders
# Simulink autosave extension
# Simulink cache files
# Octave session info
### OSX ###
# General
# Icon must end with two \r
# Thumbnails
# Files that might appear in the root of a volume
# Directories potentially created on remote AFP share
### Packer ###
# Cache objects
**/packer_cache/
# Crash log
**/crash.log
# For built boxes
**/*.box
### Patch ###
### Perl ###
**/!Build/
**/.last_cover_stats
**/META.yml
**/META.json
**/MYMETA.*
**/*.pm.tdy
**/*.bs
# Devel::Cover
**/cover_db/
# Devel::NYTProf
**/nytprof.out
# Dizt::Zilla
**/.build/
# Module::Build
**/Build
**/Build.bat
# Module::Install
**/inc/
# ExtUtils::MakeMaker
**/blib/
**/_eumm/
**/*.gz
**/Makefile
**/Makefile.old
**/MANIFEST.bak
**/pm_to_blib
### Perl6 ###
# Gitignore for Perl 6 (http://www.perl6.org)
# As part of https://github.com/github/gitignore
# precompiled files
**/.precomp
**/lib/.precomp
### PHPUnit ###
# Covers PHPUnit
# Reference: https://phpunit.de/
# Generated files
**/.phpunit.result.cache
# PHPUnit
**/app/phpunit.xml
**/phpunit.xml
# Build data
**/build/
### PowerShell ###
# Exclude packaged modules
# Exclude .NET assemblies from source
### Puppet ###
# gitignore template for Puppet modules
# website: https://forge.puppet.com/
# Built packages
**/pkg/*
# Should run on multiple platforms so don't check in
**/Gemfile.lock
# Tests
**/spec/fixtures/*
**/coverage/*
# Third-party
**/vendor/*
### PuTTY ###
# Private key
**/*.ppk
### PyCharm ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### PyCharm Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
### PyCharm+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### PyCharm+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
# Sonarlint plugin
### PyCharm+iml ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
# Generated files
# Sensitive or high-churn files
# Gradle
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
# Mongo Explorer plugin
# File-based project format
# IntelliJ
# mpeltonen/sbt-idea plugin
# JIRA plugin
# Cursive Clojure plugin
# Crashlytics plugin (for Android Studio and IntelliJ)
# Editor-based Rest Client
# Android studio 3.1+ serialized cache file
### PyCharm+iml Patch ###
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
### pydev ###
**/.pydevproject
### Python ###
# Byte-compiled / optimized / DLL files
# C extensions
# Distribution / packaging
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
# Installer logs
# Unit test / coverage reports
# Translations
# Django stuff:
# Flask stuff:
# Scrapy stuff:
# Sphinx documentation
# PyBuilder
# Jupyter Notebook
# IPython
# pyenv
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
# Celery stuff
# SageMath parsed files
# Environments
# Spyder project settings
# Rope project settings
# mkdocs documentation
# mypy
# Pyre type checker
# pytype static type analyzer
# profiling data
### R ###
# History files
**/.Rhistory
**/.Rapp.history
# Session Data files
**/.RData
# User-specific files
**/.Ruserdata
# Example code in package build process
**/*-Ex.R
# Output files from R CMD build
**/*.tar.gz
# Output files from R CMD check
**/*.Rcheck/
# RStudio files
**/.Rproj.user/
# produced vignettes
**/vignettes/*.html
**/vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
**/.httr-oauth
# knitr and R markdown default cache directories
**/*_cache/
**/cache/
# Temporary files created by R markdown
**/*.utf8.md
**/*.knit.md
# R Environment Variables
**/.Renviron
### R.Bookdown Stack ###
# R package: bookdown caching files
**/*_files/
### Rails ###
**/*.rbc
**/capybara-*.html
**/.rspec
**/db/*.sqlite3
**/db/*.sqlite3-journal
**/db/*.sqlite3-[0-9]*
**/public/system
**/coverage/
**/spec/tmp
**/rerun.txt
**/pickle-email-*.html
# Ignore all logfiles and tempfiles.
**/log/*
**/tmp/*
**/!/log/.keep
**/!/tmp/.keep
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
**/config/initializers/secret_token.rb
**/config/master.key
# Only include if you have production secrets in this file, which is no longer a Rails default
# config/secrets.yml
# dotenv, dotenv-rails
# TODO Comment out these rules if environment variables can be committed
**/.env.*
## Environment normalization:
**/.bundle
**/vendor/bundle
# these should all be checked in to normalize the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
**/.rvmrc
# if using bower-rails ignore default bower_components path bower.json files
**/vendor/assets/bower_components
**/*.bowerrc
**/bower.json
# Ignore pow environment settings
**/.powenv
# Ignore Byebug command history file.
**/.byebug_history
# Ignore node_modules
# Ignore precompiled javascript packs
**/public/packs
**/public/packs-test
**/public/assets
# Ignore yarn files
**/yarn-error.log
# Ignore uploaded files in development
**/storage/*
**/!/storage/.keep
### react ###
**/.DS_*
**/**/*.backup.*
**/**/*.back.*
**/*.sublime*
**/psd
**/thumb
**/sketch
### ReactNative ###
# React Native Stack Base
**/.expo
**/__generated__
### ReactNative.Android Stack ###
# Built application files
**/*.aar
**/*.ap_
**/*.aab
# Files for the ART/Dalvik VM
**/*.dex
# Java class files
# Generated files
**/gen/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/
# Gradle files
# Local configuration file (sdk path, etc)
# Proguard folder generated by Eclipse
**/proguard/
# Log Files
# Android Studio Navigation editor temp files
**/.navigation/
# Android Studio captures folder
**/captures/
# IntelliJ
**/.idea/workspace.xml
**/.idea/tasks.xml
**/.idea/gradle.xml
**/.idea/assetWizardSettings.xml
**/.idea/dictionaries
**/.idea/libraries
# Android Studio 3 in .gitignore file.
**/.idea/caches
**/.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
**/.idea/navEditor.xml
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
# External native build folder generated in Android Studio 2.2 and later
**/.externalNativeBuild
**/.cxx/
# Google Services (e.g. APIs or Firebase)
# google-services.json
# Freeline
**/freeline.py
**/freeline/
**/freeline_project_description.json
# fastlane
**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output
**/fastlane/readme.md
# Version control
**/vcs.xml
# lint
**/lint/intermediates/
**/lint/generated/
**/lint/outputs/
**/lint/tmp/
# lint/reports/
### ReactNative.Buck Stack ###
**/buck-out/
**/.buckconfig.local
**/.buckd/
**/.buckversion
**/.fakebuckversion
### ReactNative.Gradle Stack ###
**/.gradle
# Ignore Gradle GUI config
**/gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
**/!gradle-wrapper.jar
# Cache of project
**/.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### ReactNative.Linux Stack ###
# temporary files which can be created if a process still has a handle open of a deleted file
# KDE directory preferences
# Linux trash folder which might appear on any partition or disk
# .nfs files are created when an open file is removed but is still being accessed
### ReactNative.Node Stack ###
# Logs
# Diagnostic reports (https://nodejs.org/api/report.html)
# Runtime data
# Directory for instrumented libs generated by jscoverage/JSCover
# Coverage directory used by tools like istanbul
# nyc test coverage
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
# Bower dependency directory (https://bower.io/)
# node-waf configuration
# Compiled binary addons (https://nodejs.org/api/addons.html)
# Dependency directories
# TypeScript v1 declaration files
# TypeScript cache
# Optional npm cache directory
# Optional eslint cache
# Microbundle cache
# Optional REPL history
# Output of 'npm pack'
# Yarn Integrity file
# dotenv environment variables file
# parcel-bundler cache (https://parceljs.org/)
# Next.js build output
# Nuxt.js build / generate output
# Gatsby files
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
# Serverless directories
# FuseBox cache
# DynamoDB Local files
# TernJS port file
# Stores VSCode versions used for testing VSCode extensions
### ReactNative.Xcode Stack ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## User settings
**/xcuserdata/
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
**/*.xcscmblueprint
**/*.xccheckout
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
**/DerivedData/
**/*.moved-aside
**/*.pbxuser
**/!default.pbxuser
**/*.mode1v3
**/!default.mode1v3
**/*.mode2v3
**/!default.mode2v3
**/*.perspectivev3
**/!default.perspectivev3
## Gcc Patch
**/*.gcno
### ReactNative.macOS Stack ###
# General
# Icon must end with two \r
**/Icon
# Thumbnails
# Files that might appear in the root of a volume
# Directories potentially created on remote AFP share
### Redis ###
# Ignore redis binary dump (dump.rdb) files
**/*.rdb
### ROOT ###
# ROOT Home Page : https://root.cern.ch/
# ROOT Used by Experimental Physicists, not necessarily HEP
# ROOT based on C++
# Files generated by ROOT, observed with v6.xy
**/*.pcm
### Ruby ###
**/.config
**/InstalledFiles
**/pkg/
**/spec/reports/
**/spec/examples.txt
**/test/tmp/
**/test/version_tmp/
**/tmp/
# Used by dotenv library to load environment variables.
# .env
# Ignore Byebug command history file.
## Specific to RubyMotion:
**/.dat*
**/.repl_history
**/*.bridgesupport
**/build-iPhoneOS/
**/build-iPhoneSimulator/
## Specific to RubyMotion (use of CocoaPods):
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# vendor/Pods/
## Documentation cache and generated files:
**/.yardoc/
**/_yardoc/
**/doc/
**/rdoc/
**/.bundle/
**/lib/bundler/man/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
# .rubocop-https?--*
### Ruby Patch ###
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
# .rubocop-https?--*
### Rust ###
# Generated by Cargo
# will have compiled files and executables
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
**/Cargo.lock
### SBT ###
# Simple Build Tool
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
**/dist/*
**/lib_managed/
**/src_managed/
**/project/boot/
**/project/plugins/project/
**/.history
**/.lib/
### Scala ###
### Serverless ###
# Ignore build directory
**/.serverless
### Sonar ###
#Sonar generated dir
**/.sonar/
### SonarQube ###
# SonarQube ignore files.
# https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner
# Sonar Scanner working directories
**/.sonar/
**/.scannerwork/
# http://www.sonarlint.org/commandline/
# SonarLint working directories, configuration files (including credentials)
**/.sonarlint/
### Spark ###
**/*#*#
**/*.#*
**/*.pyc
**/*.pyo
**/.ensime
**/.ensime_cache/
**/.ensime_lucene
**/.generated-mima*
**/R-unit-tests.log
**/R/unit-tests.out
**/R/cran-check.out
**/R/pkg/vignettes/sparkr-vignettes.html
**/R/pkg/tests/fulltests/Rplots.pdf
**/build/*.jar
**/build/apache-maven*
**/build/scala*
**/build/zinc*
**/cache
**/checkpoint
**/conf/*.cmd
**/conf/*.conf
**/conf/*.properties
**/conf/*.sh
**/conf/*.xml
**/conf/java-opts
**/conf/slaves
**/derby.log
**/dev/create-release/*final
**/dev/create-release/*txt
**/dev/pr-deps/
**/docs/_site
**/docs/api
**/sql/docs
**/sql/site
**/lint-r-report.log
**/log/
**/logs/
**/project/build/target/
**/project/plugins/lib_managed/
**/project/plugins/project/build.properties
**/project/plugins/src_managed/
**/project/plugins/target/
**/python/lib/pyspark.zip
**/python/deps
**/python/test_coverage/coverage_data
**/python/test_coverage/htmlcov
**/python/pyspark/python
**/reports/
**/scalastyle-on-compile.generated.xml
**/scalastyle-output.xml
**/scalastyle.txt
**/spark-*-bin-*.tgz
**/spark-tests.log
**/streaming-tests.log
**/unit-tests.log
**/work/
**/docs/.jekyll-metadata
# For Hive
**/TempStatsStore/
**/metastore/
**/metastore_db/
**/sql/hive-thriftserver/test_warehouses
**/warehouse/
**/spark-warehouse/
# For R session data
**/.RHistory
**/*.Rproj
**/*.Rproj.*
**/.Rproj.user
# For SBT
**/.jvmopts
### Splunk ###
# gitignore template for Splunk apps
# documentation: http://docs.splunk.com/Documentation/Splunk/6.2.3/admin/Defaultmetaconf
# Splunk local meta file
**/local.meta
# Splunk local folder
**/local
### Spreadsheet ###
**/*.xlr
**/*.xls
**/*.xlsx
### SSH ###
**/**/.ssh/id_*
**/**/.ssh/*_id_*
**/**/.ssh/known_hosts
### SublimeText ###
# Cache files for Sublime Text
**/*.tmlanguage.cache
**/*.tmPreferences.cache
**/*.stTheme.cache
# Workspace files are user-specific
**/*.sublime-workspace
# Project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using Sublime Text
# *.sublime-project
# SFTP configuration file
**/sftp-config.json
# Package control specific files
**/Package Control.last-run
**/Package Control.ca-list
**/Package Control.ca-bundle
**/Package Control.system-ca-bundle
**/Package Control.cache/
**/Package Control.ca-certs/
**/Package Control.merged-ca-bundle
**/Package Control.user-ca-bundle
**/oscrypto-ca-bundle.crt
**/bh_unicode_properties.cache
# Sublime-github package stores a github token in this file
# https://packagecontrol.io/packages/sublime-github
**/GitHub.sublime-settings
### SVN ###
**/.svn/
### Terraform ###
# Local .terraform directories
**/**/.terraform/*
# .tfstate files
**/*.tfstate
**/*.tfstate.*
# Crash log files
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
# .tfvars files are managed as part of configuration and so should be included in
# version control.
# example.tfvars
# Ignore override files as they are usually used to override resources locally and so
# are not checked in
**/override.tf
**/override.tf.json
**/*_override.tf
**/*_override.tf.json
# Include override files you do wish to add to version control using negated pattern
# !example_override.tf
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
# example: *tfplan*
### Terragrunt ###
# terragrunt cache directories
**/**/.terragrunt-cache/*
### TortoiseGit ###
# Project-level settings
**/.tgitconfig
### Vagrant ###
# General
**/.vagrant/
# Log files (if you are creating logs in debug mode, uncomment this)
# *.log
### Vagrant Patch ###
### venv ###
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
**/[Bb]in
**/[Ii]nclude
**/[Ll]ib
**/[Ll]ib64
**/[Ll]ocal
**/[Ss]cripts
**/pyvenv.cfg
**/pip-selfcheck.json
### VirtualEnv ###
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
### Julia ###
# Files generated by invoking Julia with --code-coverage
**/*.jl.cov
**/*.jl.*.cov
# Files generated by invoking Julia with --track-allocation
**/*.jl.mem
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
**/deps/deps.jl
**/deps/build.log
**/deps/downloads/
**/deps/usr/
**/deps/src/
# Build artifacts for creating documentation generated by the Documenter package
**/docs/build/
**/docs/site/
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
**/Manifest.toml
### VisualStudioCode ###
### VisualStudioCode Patch ###
# Ignore all local history of files
**/.ionide
### vs ###
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
**/*.rsuser
**/*.suo
**/*.user
**/*.userosscache
**/*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
**/*.userprefs
# Mono auto generated files
**/mono_crash.*
# Build results
**/[Dd]ebug/
**/[Dd]ebugPublic/
**/[Rr]elease/
**/[Rr]eleases/
**/x64/
**/x86/
**/[Aa][Rr][Mm]/
**/[Aa][Rr][Mm]64/
**/bld/
**/[Bb]in/
**/[Oo]bj/
**/[Ll]og/
**/[Ll]ogs/
# Visual Studio 2015/2017 cache/options directory
**/.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
**/Generated\ Files/
# MSTest test Results
**/[Tt]est[Rr]esult*/
**/[Bb]uild[Ll]og.*
# NUnit
**/*.VisualState.xml
**/TestResult.xml
**/nunit-*.xml
# Build Results of an ATL Project
**/[Dd]ebugPS/
**/[Rr]eleasePS/
**/dlldata.c
# Benchmark Results
**/BenchmarkDotNet.Artifacts/
# .NET Core
**/project.lock.json
**/project.fragment.lock.json
**/artifacts/
# StyleCop
**/StyleCopReport.xml
# Files built by Visual Studio
**/*_i.c
**/*_p.c
**/*_h.h
**/*.meta
**/*.iobj
**/*.ipdb
**/*.pgc
**/*.pgd
**/*.rsp
**/*.sbr
**/*.tlb
**/*.tli
**/*.tlh
**/*.tmp_proj
**/*_wpftmp.csproj
**/*.vspscc
**/*.vssscc
**/.builds
**/*.pidb
**/*.svclog
**/*.scc
# Chutzpah Test files
**/_Chutzpah*
# Visual C++ cache files
**/ipch/
**/*.aps
**/*.ncb
**/*.opendb
**/*.opensdf
**/*.cachefile
**/*.VC.db
**/*.VC.VC.opendb
# Visual Studio profiler
**/*.psess
**/*.vsp
**/*.vspx
**/*.sap
# Visual Studio Trace Files
**/*.e2e
# TFS 2012 Local Workspace
**/$tf/
# Guidance Automation Toolkit
**/*.gpState
# ReSharper is a .NET coding add-in
**/_ReSharper*/
**/*.[Rr]e[Ss]harper
**/*.DotSettings.user
# TeamCity is a build add-in
**/_TeamCity*
# DotCover is a Code Coverage Tool
**/*.dotCover
# AxoCover is a Code Coverage Tool
**/.axoCover/*
**/!.axoCover/settings.json
# Coverlet is a free, cross platform Code Coverage Tool
**/coverage*[.json, .xml, .info]
# Visual Studio code coverage results
**/*.coverage
**/*.coveragexml
# NCrunch
**/_NCrunch_*
**/.*crunch*.local.xml
**/nCrunchTemp_*
# MightyMoose
**/*.mm.*
**/AutoTest.Net/
# Web workbench (sass)
**/.sass-cache/
# Installshield output folder
**/[Ee]xpress/
# DocProject is a documentation generator add-in
**/DocProject/buildhelp/
**/DocProject/Help/*.HxT
**/DocProject/Help/*.HxC
**/DocProject/Help/*.hhc
**/DocProject/Help/*.hhk
**/DocProject/Help/*.hhp
**/DocProject/Help/Html2
**/DocProject/Help/html
# Click-Once directory
**/publish/
# Publish Web Output
**/*.[Pp]ublish.xml
**/*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
**/*.pubxml
**/*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
**/PublishScripts/
# NuGet Packages
**/*.nupkg
# NuGet Symbol Packages
**/*.snupkg
# The packages folder can be ignored because of Package Restore
**/**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
**/!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
**/*.nuget.props
**/*.nuget.targets
# Microsoft Azure Build Output
**/csx/
**/*.build.csdef
# Microsoft Azure Emulator
**/ecf/
**/rcf/
# Windows Store app package directories and files
**/AppPackages/
**/BundleArtifacts/
**/Package.StoreAssociation.xml
**/_pkginfo.txt
**/*.appx
**/*.appxbundle
**/*.appxupload
# Visual Studio cache files
# files ending in .cache can be ignored
**/*.[Cc]ache
# but keep track of directories ending in .cache
**/!?*.[Cc]ache/
# Others
**/ClientBin/
**/~$*
**/*.dbmdl
**/*.dbproj.schemaview
**/*.jfm
**/*.pfx
**/*.publishsettings
**/orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
**/Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
**/_UpgradeReport_Files/
**/Backup*/
**/UpgradeLog*.XML
**/UpgradeLog*.htm
**/ServiceFabricBackup/
**/*.rptproj.bak
# SQL Server files
**/*.mdf
**/*.ldf
**/*.ndf
# Business Intelligence projects
**/*.rdl.data
**/*.bim.layout
**/*.bim_*.settings
**/*.rptproj.rsuser
**/*- [Bb]ackup.rdl
**/*- [Bb]ackup ([0-9]).rdl
**/*- [Bb]ackup ([0-9][0-9]).rdl
# Microsoft Fakes
**/FakesAssemblies/
# GhostDoc plugin setting file
**/*.GhostDoc.xml
# Node.js Tools for Visual Studio
**/.ntvs_analysis.dat
# Visual Studio 6 build log
**/*.plg
# Visual Studio 6 workspace options file
**/*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
**/*.vbw
# Visual Studio LightSwitch build output
**/**/*.HTMLClient/GeneratedArtifacts
**/**/*.DesktopClient/GeneratedArtifacts
**/**/*.DesktopClient/ModelManifest.xml
**/**/*.Server/GeneratedArtifacts
**/**/*.Server/ModelManifest.xml
**/_Pvt_Extensions
# Paket dependency manager
**/.paket/paket.exe
**/paket-files/
# FAKE - F# Make
**/.fake/
# CodeRush personal settings
**/.cr/personal
# Python Tools for Visual Studio (PTVS)
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
**/*.tss
# Telerik's JustMock configuration file
**/*.jmconfig
# BizTalk build output
**/*.btp.cs
**/*.btm.cs
**/*.odx.cs
**/*.xsd.cs
# OpenCover UI analysis results
**/OpenCover/
# Azure Stream Analytics local run output
**/ASALocalRun/
# MSBuild Binary and Structured Log
**/*.binlog
# NVidia Nsight GPU debugger configuration file
**/*.nvuser
# MFractors (Xamarin productivity tool) working folder
**/.mfractor/
# Local History for Visual Studio
**/.localhistory/
# BeatPulse healthcheck temp database
**/healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
**/MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
**/.ionide/
### vscode ###
### Vue ###
# gitignore template for Vue.js projects
# Recommended template: Node.gitignore
# TODO: where does this rule come from?
**/docs/_book
# TODO: where does this rule come from?
**/test/
### Vuejs ###
# Recommended template: Node.gitignore
**/npm-debug.log
**/yarn-error.log
### Waf ###
# For projects that use the Waf build system: https://waf.io/
# Dot-hidden on Unix-like systems
**/.waf-*-*/
**/.waf3-*-*/
# Hidden directory on Windows (no dot)
**/waf-*-*/
**/waf3-*-*/
# Lockfile
**/.lock-waf_*_build
### Windows ###
# Windows thumbnail cache files
**/Thumbs.db
**/Thumbs.db:encryptable
**/ehthumbs.db
**/ehthumbs_vista.db
# Dump file
**/*.stackdump
# Folder config file
**/[Dd]esktop.ini
# Recycle Bin used on file shares
**/$RECYCLE.BIN/
# Windows Installer files
**/*.msix
# Windows shortcuts
**/*.lnk
### Xcode ###
# Xcode
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
### Xcode Patch ###
**/*.xcodeproj/*
**/!*.xcodeproj/project.pbxproj
**/!*.xcodeproj/xcshareddata/
**/!*.xcworkspace/contents.xcworkspacedata
**/**/xcshareddata/WorkspaceSettings.xcsettings
### XcodeInjection ###
# Code Injection
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
**/iOSInjectionProject/
### Gradle ###
# Ignore Gradle GUI config
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
# Cache of project
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
### Gradle Patch ###
**/**/build/
### VisualStudio ###
# User-specific files
# User-specific files (MonoDevelop/Xamarin Studio)
# Mono auto generated files
# Build results
# Visual Studio 2015/2017 cache/options directory
# Uncomment if you have tasks that create the project's static files in wwwroot
# Visual Studio 2017 auto generated files
# MSTest test Results
# NUnit
# Build Results of an ATL Project
# Benchmark Results
# .NET Core
# StyleCop
# Files built by Visual Studio
# Chutzpah Test files
# Visual C++ cache files
# Visual Studio profiler
# Visual Studio Trace Files
# TFS 2012 Local Workspace
# Guidance Automation Toolkit
# ReSharper is a .NET coding add-in
# TeamCity is a build add-in
# DotCover is a Code Coverage Tool
# AxoCover is a Code Coverage Tool
# Coverlet is a free, cross platform Code Coverage Tool
# Visual Studio code coverage results
# NCrunch
# MightyMoose
# Web workbench (sass)
# Installshield output folder
# DocProject is a documentation generator add-in
# Click-Once directory
# Publish Web Output
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
# NuGet Packages
# NuGet Symbol Packages
# The packages folder can be ignored because of Package Restore
# except build/, which is used as an MSBuild target.
# Uncomment if necessary however generally it will be regenerated when needed
# NuGet v3's project.json files produces more ignorable files
# Microsoft Azure Build Output
# Microsoft Azure Emulator
# Windows Store app package directories and files
# Visual Studio cache files
# files ending in .cache can be ignored
# but keep track of directories ending in .cache
# Others
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
# RIA/Silverlight projects
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
# SQL Server files
# Business Intelligence projects
# Microsoft Fakes
# GhostDoc plugin setting file
# Node.js Tools for Visual Studio
# Visual Studio 6 build log
# Visual Studio 6 workspace options file
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
# Visual Studio LightSwitch build output
# Paket dependency manager
# FAKE - F# Make
# CodeRush personal settings
# Python Tools for Visual Studio (PTVS)
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
# Telerik's JustMock configuration file
# BizTalk build output
# OpenCover UI analysis results
# Azure Stream Analytics local run output
# MSBuild Binary and Structured Log
# NVidia Nsight GPU debugger configuration file
# MFractors (Xamarin productivity tool) working folder
# Local History for Visual Studio
# BeatPulse healthcheck temp database
# Backup folder for Package Reference Convert tool in Visual Studio 2017
# Ionide (cross platform F# VS Code tools) working folder
# End of https://www.toptal.com/developers/gitignore/api/ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh