├── gitignores ├── Nim.gitignore ├── SketchUp.gitignore ├── Fancy.gitignore ├── Idris.gitignore ├── Scala.gitignore ├── Agda.gitignore ├── Lithium.gitignore ├── Phalcon.gitignore ├── DM.gitignore ├── Kohana.gitignore ├── CUDA.gitignore ├── Lilypond.gitignore ├── Sass.gitignore ├── Ada.gitignore ├── AppEngine.gitignore ├── AppceleratorTitanium.gitignore ├── Concrete5.gitignore ├── Jekyll.gitignore ├── Gcov.gitignore ├── Packer.gitignore ├── Scheme.gitignore ├── Yeoman.gitignore ├── ForceDotCom.gitignore ├── Qooxdoo.gitignore ├── VVVV.gitignore ├── Sdcc.gitignore ├── Elm.gitignore ├── EPiServer.gitignore ├── SymphonyCMS.gitignore ├── ChefCookbook.gitignore ├── Godot.gitignore ├── PureScript.gitignore ├── RhodesRhomobile.gitignore ├── OracleForms.gitignore ├── Yii.gitignore ├── Elixir.gitignore ├── IGORPro.gitignore ├── Elisp.gitignore ├── ArchLinuxPackages.gitignore ├── Erlang.gitignore ├── Opa.gitignore ├── Mercury.gitignore ├── Perl6.gitignore ├── Scrivener.gitignore ├── SCons.gitignore ├── CraftCMS.gitignore ├── Xojo.gitignore ├── CMake.gitignore ├── Clojure.gitignore ├── Leiningen.gitignore ├── Plone.gitignore ├── Processing.gitignore ├── LabVIEW.gitignore ├── Textpattern.gitignore ├── CommonLisp.gitignore ├── Finale.gitignore ├── Maven.gitignore ├── Waf.gitignore ├── Nanoc.gitignore ├── PlayFramework.gitignore ├── CFWheels.gitignore ├── Stella.gitignore ├── ExtJs.gitignore ├── Composer.gitignore ├── TurboGears2.gitignore ├── D.gitignore ├── Haskell.gitignore ├── Go.gitignore ├── Laravel.gitignore ├── OpenCart.gitignore ├── Rust.gitignore ├── Gradle.gitignore ├── Java.gitignore ├── Kotlin.gitignore ├── Coq.gitignore ├── ZendFramework.gitignore ├── C++.gitignore ├── CodeIgniter.gitignore ├── Fortran.gitignore ├── GitBook.gitignore ├── OCaml.gitignore ├── Actionscript.gitignore ├── ExpressionEngine.gitignore ├── LemonStand.gitignore ├── GWT.gitignore ├── CakePHP.gitignore ├── MetaProgrammingSystem.gitignore ├── Perl.gitignore ├── KiCad.gitignore ├── Zephir.gitignore ├── Lua.gitignore ├── Smalltalk.gitignore ├── WordPress.gitignore ├── JBoss.gitignore ├── Typo3.gitignore ├── C.gitignore ├── R.gitignore ├── Dart.gitignore ├── Grails.gitignore ├── FuelPHP.gitignore ├── Eagle.gitignore ├── Autotools.gitignore ├── ROS.gitignore ├── Qt.gitignore ├── Prestashop.gitignore ├── Terraform.gitignore ├── JENKINS_HOME.gitignore ├── Julia.gitignore ├── SugarCRM.gitignore ├── Umbraco.gitignore ├── Magento.gitignore ├── Symfony.gitignore ├── SeamGen.gitignore ├── Drupal.gitignore ├── Unity.gitignore ├── UnrealEngine.gitignore ├── Ruby.gitignore ├── Rails.gitignore ├── React.gitignore ├── Android.gitignore ├── Vue.gitignore ├── Node.gitignore ├── Objective-C.gitignore ├── Delphi.gitignore ├── Swift.gitignore ├── Python.gitignore ├── TeX.gitignore ├── VisualStudio.gitignore └── Joomla.gitignore ├── .eslintrc ├── package.json ├── LICENSE.md ├── index.js ├── README.md ├── .gitignore └── file_utils.js /gitignores/Nim.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | -------------------------------------------------------------------------------- /gitignores/SketchUp.gitignore: -------------------------------------------------------------------------------- 1 | *.skb 2 | -------------------------------------------------------------------------------- /gitignores/Fancy.gitignore: -------------------------------------------------------------------------------- 1 | *.rbc 2 | *.fyc 3 | -------------------------------------------------------------------------------- /gitignores/Idris.gitignore: -------------------------------------------------------------------------------- 1 | *.ibc 2 | *.o 3 | -------------------------------------------------------------------------------- /gitignores/Scala.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.log 3 | -------------------------------------------------------------------------------- /gitignores/Agda.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | MAlonzo/** 3 | -------------------------------------------------------------------------------- /gitignores/Lithium.gitignore: -------------------------------------------------------------------------------- 1 | libraries/* 2 | resources/tmp/* 3 | -------------------------------------------------------------------------------- /gitignores/Phalcon.gitignore: -------------------------------------------------------------------------------- 1 | /cache/ 2 | /config/development/ 3 | -------------------------------------------------------------------------------- /gitignores/DM.gitignore: -------------------------------------------------------------------------------- 1 | *.dmb 2 | *.rsc 3 | *.int 4 | *.lk 5 | *.zip 6 | -------------------------------------------------------------------------------- /gitignores/Kohana.gitignore: -------------------------------------------------------------------------------- 1 | application/cache/* 2 | application/logs/* 3 | -------------------------------------------------------------------------------- /gitignores/CUDA.gitignore: -------------------------------------------------------------------------------- 1 | *.i 2 | *.ii 3 | *.gpu 4 | *.ptx 5 | *.cubin 6 | *.fatbin 7 | -------------------------------------------------------------------------------- /gitignores/Lilypond.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.ps 3 | *.midi 4 | *.mid 5 | *.log 6 | *~ 7 | -------------------------------------------------------------------------------- /gitignores/Sass.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | *.css.map 3 | *.sass.map 4 | *.scss.map 5 | -------------------------------------------------------------------------------- /gitignores/Ada.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | -------------------------------------------------------------------------------- /gitignores/AppEngine.gitignore: -------------------------------------------------------------------------------- 1 | # Google App Engine generated folder 2 | appengine-generated/ 3 | -------------------------------------------------------------------------------- /gitignores/AppceleratorTitanium.gitignore: -------------------------------------------------------------------------------- 1 | # Build folder and log file 2 | build/ 3 | build.log 4 | -------------------------------------------------------------------------------- /gitignores/Concrete5.gitignore: -------------------------------------------------------------------------------- 1 | config/site.php 2 | files/cache/* 3 | files/tmp/* 4 | .htaccess 5 | -------------------------------------------------------------------------------- /gitignores/Jekyll.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-cache/ 4 | .jekyll-metadata 5 | -------------------------------------------------------------------------------- /gitignores/Gcov.gitignore: -------------------------------------------------------------------------------- 1 | # gcc coverage testing tool files 2 | 3 | *.gcno 4 | *.gcda 5 | *.gcov 6 | -------------------------------------------------------------------------------- /gitignores/Packer.gitignore: -------------------------------------------------------------------------------- 1 | # Cache objects 2 | packer_cache/ 3 | 4 | # For built boxes 5 | *.box 6 | -------------------------------------------------------------------------------- /gitignores/Scheme.gitignore: -------------------------------------------------------------------------------- 1 | *.ss~ 2 | *.ss#* 3 | .#*.ss 4 | 5 | *.scm~ 6 | *.scm#* 7 | .#*.scm 8 | -------------------------------------------------------------------------------- /gitignores/Yeoman.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | *.log 4 | 5 | build/ 6 | dist/ 7 | -------------------------------------------------------------------------------- /gitignores/ForceDotCom.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | salesforce.schema 4 | Referenced Packages 5 | -------------------------------------------------------------------------------- /gitignores/Qooxdoo.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | cache-downloads 3 | inspector 4 | api 5 | source/inspector.html 6 | -------------------------------------------------------------------------------- /gitignores/VVVV.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # .v4p backup files 3 | *~.xml 4 | 5 | # Dynamic plugins .dll 6 | bin/ 7 | -------------------------------------------------------------------------------- /gitignores/Sdcc.gitignore: -------------------------------------------------------------------------------- 1 | # SDCC stuff 2 | *.lnk 3 | *.lst 4 | *.map 5 | *.mem 6 | *.rel 7 | *.rst 8 | *.sym 9 | -------------------------------------------------------------------------------- /gitignores/Elm.gitignore: -------------------------------------------------------------------------------- 1 | # elm-package generated files 2 | elm-stuff 3 | # elm-repl generated files 4 | repl-temp-* 5 | -------------------------------------------------------------------------------- /gitignores/EPiServer.gitignore: -------------------------------------------------------------------------------- 1 | ###################### 2 | ## EPiServer Files 3 | ###################### 4 | *License.config 5 | -------------------------------------------------------------------------------- /gitignores/SymphonyCMS.gitignore: -------------------------------------------------------------------------------- 1 | manifest/cache/ 2 | manifest/logs/ 3 | manifest/tmp/ 4 | symphony/ 5 | workspace/uploads/ 6 | install-log.txt 7 | -------------------------------------------------------------------------------- /gitignores/ChefCookbook.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | /cookbooks 3 | 4 | # Bundler 5 | bin/* 6 | .bundle/* 7 | 8 | .kitchen/ 9 | .kitchen.local.yml 10 | -------------------------------------------------------------------------------- /gitignores/Godot.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Godot-specific ignores 3 | .import/ 4 | export.cfg 5 | export_presets.cfg 6 | 7 | # Mono-specific ignores 8 | .mono/ 9 | -------------------------------------------------------------------------------- /gitignores/PureScript.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | .psci_modules 3 | bower_components 4 | node_modules 5 | 6 | # Generated files 7 | .psci 8 | output 9 | -------------------------------------------------------------------------------- /gitignores/RhodesRhomobile.gitignore: -------------------------------------------------------------------------------- 1 | rholog-* 2 | sim-* 3 | bin/libs 4 | bin/RhoBundle 5 | bin/tmp 6 | bin/target 7 | bin/*.ap_ 8 | *.o 9 | *.jar 10 | -------------------------------------------------------------------------------- /gitignores/OracleForms.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Form Modules 2 | *.fmx 3 | 4 | # Compiled Menu Modules 5 | *.mmx 6 | 7 | # Compiled Pre-Linked Libraries 8 | *.plx 9 | -------------------------------------------------------------------------------- /gitignores/Yii.gitignore: -------------------------------------------------------------------------------- 1 | assets/* 2 | !assets/.gitignore 3 | protected/runtime/* 4 | !protected/runtime/.gitignore 5 | protected/data/*.db 6 | themes/classic/views/ 7 | -------------------------------------------------------------------------------- /gitignores/Elixir.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | /doc 5 | /.fetch 6 | erl_crash.dump 7 | *.ez 8 | *.beam 9 | /config/*.secret.exs 10 | .elixir_ls/ 11 | -------------------------------------------------------------------------------- /gitignores/IGORPro.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid including Experiment files: they can be created and edited locally to test the ipf files 2 | *.pxp 3 | *.pxt 4 | *.uxp 5 | *.uxt 6 | -------------------------------------------------------------------------------- /gitignores/Elisp.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled 2 | *.elc 3 | 4 | # Packaging 5 | .cask 6 | 7 | # Backup files 8 | *~ 9 | 10 | # Undo-tree save-files 11 | *.~undo-tree 12 | -------------------------------------------------------------------------------- /gitignores/ArchLinuxPackages.gitignore: -------------------------------------------------------------------------------- 1 | *.tar 2 | *.tar.* 3 | *.jar 4 | *.exe 5 | *.msi 6 | *.zip 7 | *.tgz 8 | *.log 9 | *.log.* 10 | *.sig 11 | 12 | pkg/ 13 | src/ 14 | -------------------------------------------------------------------------------- /gitignores/Erlang.gitignore: -------------------------------------------------------------------------------- 1 | .eunit 2 | deps 3 | *.o 4 | *.beam 5 | *.plt 6 | erl_crash.dump 7 | ebin/*.beam 8 | rel/example_project 9 | .concrete/DEV_MODE 10 | .rebar 11 | -------------------------------------------------------------------------------- /gitignores/Opa.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _tracks 3 | 4 | opa-debug-js 5 | 6 | *.opp 7 | *.opx 8 | *.opx.broken 9 | *.dump 10 | *.api 11 | *.api-txt 12 | *.exe 13 | *.log 14 | -------------------------------------------------------------------------------- /gitignores/Mercury.gitignore: -------------------------------------------------------------------------------- 1 | Mercury/ 2 | Mercury.modules 3 | *.mh 4 | *.err 5 | *.init 6 | *.dll 7 | *.exe 8 | *.a 9 | *.so 10 | *.dylib 11 | *.beams 12 | *.d 13 | *.c_date 14 | -------------------------------------------------------------------------------- /gitignores/Perl6.gitignore: -------------------------------------------------------------------------------- 1 | # Gitignore for Perl 6 (http://www.perl6.org) 2 | # As part of https://github.com/github/gitignore 3 | 4 | # precompiled files 5 | .precomp 6 | lib/.precomp 7 | 8 | -------------------------------------------------------------------------------- /gitignores/Scrivener.gitignore: -------------------------------------------------------------------------------- 1 | /Files/binder.autosave 2 | /Files/binder.backup 3 | /Files/search.indexes 4 | /Files/user.lock 5 | /Files/Docs/docs.checksum 6 | /QuickLook/ 7 | /Settings/ui.plist 8 | -------------------------------------------------------------------------------- /gitignores/SCons.gitignore: -------------------------------------------------------------------------------- 1 | # for projects that use SCons for building: http://http://www.scons.org/ 2 | .sconsign.dblite 3 | 4 | # When configure fails, SCons outputs these 5 | config.log 6 | .sconf_temp 7 | -------------------------------------------------------------------------------- /gitignores/CraftCMS.gitignore: -------------------------------------------------------------------------------- 1 | # Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore) 2 | # not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26) 3 | /craft/storage/* 4 | !/craft/storage/rebrand 5 | -------------------------------------------------------------------------------- /gitignores/Xojo.gitignore: -------------------------------------------------------------------------------- 1 | # Xojo (formerly REALbasic and Real Studio) 2 | 3 | Builds* 4 | *.debug 5 | *.debug.app 6 | Debug*.exe 7 | Debug*/Debug*.exe 8 | Debug*/Debug*\ Libs 9 | *.rbuistate 10 | *.xojo_uistate 11 | *.obsolete 12 | -------------------------------------------------------------------------------- /gitignores/CMake.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | CMakeCache.txt 3 | CMakeFiles 4 | CMakeScripts 5 | Testing 6 | Makefile 7 | cmake_install.cmake 8 | install_manifest.txt 9 | compile_commands.json 10 | CTestTestfile.cmake 11 | _deps 12 | -------------------------------------------------------------------------------- /gitignores/Clojure.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | pom.xml.asc 3 | *.jar 4 | *.class 5 | /lib/ 6 | /classes/ 7 | /target/ 8 | /checkouts/ 9 | .lein-deps-sum 10 | .lein-repl-history 11 | .lein-plugins/ 12 | .lein-failures 13 | .nrepl-port 14 | .cpcache/ 15 | -------------------------------------------------------------------------------- /gitignores/Leiningen.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | pom.xml.asc 3 | *.jar 4 | *.class 5 | /lib/ 6 | /classes/ 7 | /target/ 8 | /checkouts/ 9 | .lein-deps-sum 10 | .lein-repl-history 11 | .lein-plugins/ 12 | .lein-failures 13 | .nrepl-port 14 | .cpcache/ 15 | -------------------------------------------------------------------------------- /gitignores/Plone.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | *.tmp* 4 | *.mo 5 | *.egg 6 | *.EGG 7 | *.egg-info 8 | *.EGG-INFO 9 | .*.cfg 10 | bin/ 11 | build/ 12 | develop-eggs/ 13 | downloads/ 14 | eggs/ 15 | fake-eggs/ 16 | parts/ 17 | dist/ 18 | var/ 19 | -------------------------------------------------------------------------------- /gitignores/Processing.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | applet 3 | application.linux-arm64 4 | application.linux-armv6hf 5 | application.linux32 6 | application.linux64 7 | application.windows32 8 | application.windows64 9 | application.macosx 10 | out 11 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "node": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": 8 8 | }, 9 | "extends": "airbnb-base", 10 | "rules": { 11 | "no-console": 0, 12 | "semi": 0 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /gitignores/LabVIEW.gitignore: -------------------------------------------------------------------------------- 1 | # Libraries 2 | *.lvlibp 3 | *.llb 4 | 5 | # Shared objects (inc. Windows DLLs) 6 | *.dll 7 | *.so 8 | *.so.* 9 | *.dylib 10 | 11 | # Executables 12 | *.exe 13 | 14 | # Metadata 15 | *.aliases 16 | *.lvlps 17 | .cache/ 18 | -------------------------------------------------------------------------------- /gitignores/Textpattern.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | css.php 3 | rpc/ 4 | sites/site*/admin/ 5 | sites/site*/private/ 6 | sites/site*/public/admin/ 7 | sites/site*/public/setup/ 8 | sites/site*/public/theme/ 9 | textpattern/ 10 | HISTORY.txt 11 | README.txt 12 | -------------------------------------------------------------------------------- /gitignores/CommonLisp.gitignore: -------------------------------------------------------------------------------- 1 | *.FASL 2 | *.fasl 3 | *.lisp-temp 4 | *.dfsl 5 | *.pfsl 6 | *.d64fsl 7 | *.p64fsl 8 | *.lx64fsl 9 | *.lx32fsl 10 | *.dx64fsl 11 | *.dx32fsl 12 | *.fx64fsl 13 | *.fx32fsl 14 | *.sx64fsl 15 | *.sx32fsl 16 | *.wx64fsl 17 | *.wx32fsl 18 | -------------------------------------------------------------------------------- /gitignores/Finale.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.db 3 | *.avi 4 | *.pdf 5 | *.ps 6 | *.mid 7 | *.midi 8 | *.mp3 9 | *.aif 10 | *.wav 11 | # Some versions of Finale have a bug and randomly save extra copies of 12 | # the music source as " copy.mus" 13 | *copy.mus 14 | -------------------------------------------------------------------------------- /gitignores/Maven.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | pom.xml.tag 3 | pom.xml.releaseBackup 4 | pom.xml.versionsBackup 5 | pom.xml.next 6 | release.properties 7 | dependency-reduced-pom.xml 8 | buildNumber.properties 9 | .mvn/timing.properties 10 | .mvn/wrapper/maven-wrapper.jar 11 | -------------------------------------------------------------------------------- /gitignores/Waf.gitignore: -------------------------------------------------------------------------------- 1 | # For projects that use the Waf build system: https://waf.io/ 2 | # Dot-hidden on Unix-like systems 3 | .waf-*-*/ 4 | .waf3-*-*/ 5 | # Hidden directory on Windows (no dot) 6 | waf-*-*/ 7 | waf3-*-*/ 8 | # Lockfile 9 | .lock-waf_*_build 10 | -------------------------------------------------------------------------------- /gitignores/Nanoc.gitignore: -------------------------------------------------------------------------------- 1 | # For projects using Nanoc (http://nanoc.ws/) 2 | 3 | # Default location for output (needs to match output_dir's value found in nanoc.yaml) 4 | output/ 5 | 6 | # Temporary file directory 7 | tmp/nanoc/ 8 | 9 | # Crash Log 10 | crash.log 11 | -------------------------------------------------------------------------------- /gitignores/PlayFramework.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore Play! working directory # 2 | bin/ 3 | /db 4 | .eclipse 5 | /lib/ 6 | /logs/ 7 | /modules 8 | /project/project 9 | /project/target 10 | /target 11 | tmp/ 12 | test-result 13 | server.pid 14 | *.eml 15 | /dist/ 16 | .cache 17 | -------------------------------------------------------------------------------- /gitignores/CFWheels.gitignore: -------------------------------------------------------------------------------- 1 | # unpacked plugin folders 2 | plugins/**/* 3 | 4 | # files directory where uploads go 5 | files 6 | 7 | # DBMigrate plugin: generated SQL 8 | db/sql 9 | 10 | # AssetBundler plugin: generated bundles 11 | javascripts/bundles 12 | stylesheets/bundles 13 | -------------------------------------------------------------------------------- /gitignores/Stella.gitignore: -------------------------------------------------------------------------------- 1 | # Atari 2600 (Stella) support for multiple assemblers 2 | # - DASM 3 | # - CC65 4 | 5 | # Assembled binaries and object directories 6 | obj/ 7 | a.out 8 | *.bin 9 | *.a26 10 | 11 | # Add in special Atari 7800-based binaries for good measure 12 | *.a78 13 | -------------------------------------------------------------------------------- /gitignores/ExtJs.gitignore: -------------------------------------------------------------------------------- 1 | .architect 2 | bootstrap.css 3 | bootstrap.js 4 | bootstrap.json 5 | bootstrap.jsonp 6 | build/ 7 | classic.json 8 | classic.jsonp 9 | ext/ 10 | modern.json 11 | modern.jsonp 12 | resources/sass/.sass-cache/ 13 | resources/.arch-internal-preview.css 14 | .arch-internal-preview.css 15 | -------------------------------------------------------------------------------- /gitignores/Composer.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | /vendor/ 3 | 4 | # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control 5 | # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file 6 | # composer.lock 7 | -------------------------------------------------------------------------------- /gitignores/TurboGears2.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | 3 | # Default development database 4 | devdata.db 5 | 6 | # Default data directory 7 | data/* 8 | 9 | # Packages 10 | *.egg 11 | *.egg-info 12 | dist 13 | build 14 | 15 | # Installer logs 16 | pip-log.txt 17 | 18 | # Unit test / coverage reports 19 | .coverage 20 | .tox 21 | -------------------------------------------------------------------------------- /gitignores/D.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.o 3 | *.obj 4 | 5 | # Compiled Dynamic libraries 6 | *.so 7 | *.dylib 8 | *.dll 9 | 10 | # Compiled Static libraries 11 | *.a 12 | *.lib 13 | 14 | # Executables 15 | *.exe 16 | 17 | # DUB 18 | .dub 19 | docs.json 20 | __dummy.html 21 | docs/ 22 | 23 | # Code coverage 24 | *.lst 25 | -------------------------------------------------------------------------------- /gitignores/Haskell.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | dist-* 3 | cabal-dev 4 | *.o 5 | *.hi 6 | *.chi 7 | *.chs.h 8 | *.dyn_o 9 | *.dyn_hi 10 | .hpc 11 | .hsenv 12 | .cabal-sandbox/ 13 | cabal.sandbox.config 14 | *.prof 15 | *.aux 16 | *.hp 17 | *.eventlog 18 | .stack-work/ 19 | cabal.project.local 20 | cabal.project.local~ 21 | .HTF/ 22 | .ghc.environment.* 23 | -------------------------------------------------------------------------------- /gitignores/Go.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | -------------------------------------------------------------------------------- /gitignores/Laravel.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | node_modules/ 3 | npm-debug.log 4 | yarn-error.log 5 | 6 | # Laravel 4 specific 7 | bootstrap/compiled.php 8 | app/storage/ 9 | 10 | # Laravel 5 & Lumen specific 11 | public/storage 12 | public/hot 13 | storage/*.key 14 | .env 15 | Homestead.yaml 16 | Homestead.json 17 | /.vagrant 18 | .phpunit.result.cache 19 | -------------------------------------------------------------------------------- /gitignores/OpenCart.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | /config.php 3 | admin/config.php 4 | 5 | !index.html 6 | 7 | download/ 8 | image/data/ 9 | image/cache/ 10 | system/cache/ 11 | system/logs/ 12 | 13 | system/storage/ 14 | 15 | # vQmod log files 16 | vqmod/logs/* 17 | # vQmod cache files 18 | vqmod/vqcache/* 19 | vqmod/checked.cache 20 | vqmod/mods.cache 21 | -------------------------------------------------------------------------------- /gitignores/Rust.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | 5 | # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries 6 | # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html 7 | Cargo.lock 8 | 9 | # These are backup files generated by rustfmt 10 | **/*.rs.bk 11 | -------------------------------------------------------------------------------- /gitignores/Gradle.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /build/ 3 | 4 | # Ignore Gradle GUI config 5 | gradle-app.setting 6 | 7 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 8 | !gradle-wrapper.jar 9 | 10 | # Cache of project 11 | .gradletasknamecache 12 | 13 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 14 | # gradle/wrapper/gradle-wrapper.properties 15 | -------------------------------------------------------------------------------- /gitignores/Java.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /gitignores/Kotlin.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | -------------------------------------------------------------------------------- /gitignores/Coq.gitignore: -------------------------------------------------------------------------------- 1 | .*.aux 2 | *.a 3 | *.cma 4 | *.cmi 5 | *.cmo 6 | *.cmx 7 | *.cmxa 8 | *.cmxs 9 | *.glob 10 | *.ml.d 11 | *.ml4.d 12 | *.mli.d 13 | *.mllib.d 14 | *.mlpack.d 15 | *.native 16 | *.o 17 | *.v.d 18 | *.vio 19 | *.vo 20 | .coq-native/ 21 | .csdp.cache 22 | .lia.cache 23 | .nia.cache 24 | .nlia.cache 25 | .nra.cache 26 | csdp.cache 27 | lia.cache 28 | nia.cache 29 | nlia.cache 30 | nra.cache 31 | -------------------------------------------------------------------------------- /gitignores/ZendFramework.gitignore: -------------------------------------------------------------------------------- 1 | # Composer files 2 | composer.phar 3 | vendor/ 4 | 5 | # Local configs 6 | config/autoload/*.local.php 7 | 8 | # Binary gettext files 9 | *.mo 10 | 11 | # Data 12 | data/logs/ 13 | data/cache/ 14 | data/sessions/ 15 | data/tmp/ 16 | temp/ 17 | 18 | #Doctrine 2 19 | data/DoctrineORMModule/Proxy/ 20 | data/DoctrineORMModule/cache/ 21 | 22 | # Legacy ZF1 23 | demos/ 24 | extras/documentation 25 | -------------------------------------------------------------------------------- /gitignores/C++.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /gitignores/CodeIgniter.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | !*/logs/index.html 4 | */cache/* 5 | !*/cache/index.html 6 | !*/cache/.htaccess 7 | 8 | user_guide_src/build/* 9 | user_guide_src/cilexer/build/* 10 | user_guide_src/cilexer/dist/* 11 | user_guide_src/cilexer/pycilexer.egg-info/* 12 | 13 | #codeigniter 3 14 | application/logs/* 15 | !application/logs/index.html 16 | !application/logs/.htaccess 17 | /vendor/ 18 | -------------------------------------------------------------------------------- /gitignores/Fortran.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /gitignores/GitBook.gitignore: -------------------------------------------------------------------------------- 1 | # Node rules: 2 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 3 | .grunt 4 | 5 | ## Dependency directory 6 | ## Commenting this out is preferred by some people, see 7 | ## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git 8 | node_modules 9 | 10 | # Book build output 11 | _book 12 | 13 | # eBook build output 14 | *.epub 15 | *.mobi 16 | *.pdf 17 | -------------------------------------------------------------------------------- /gitignores/OCaml.gitignore: -------------------------------------------------------------------------------- 1 | *.annot 2 | *.cmo 3 | *.cma 4 | *.cmi 5 | *.a 6 | *.o 7 | *.cmx 8 | *.cmxs 9 | *.cmxa 10 | 11 | # ocamlbuild working directory 12 | _build/ 13 | 14 | # ocamlbuild targets 15 | *.byte 16 | *.native 17 | 18 | # oasis generated files 19 | setup.data 20 | setup.log 21 | 22 | # Merlin configuring file for Vim and Emacs 23 | .merlin 24 | 25 | # Dune generated files 26 | *.install 27 | 28 | # Local OPAM switch 29 | _opam/ 30 | -------------------------------------------------------------------------------- /gitignores/Actionscript.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin-debug/ 3 | bin-release/ 4 | [Oo]bj/ 5 | [Bb]in/ 6 | 7 | # Other files and folders 8 | .settings/ 9 | 10 | # Executables 11 | *.swf 12 | *.air 13 | *.ipa 14 | *.apk 15 | 16 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 17 | # should NOT be excluded as they contain compiler settings and other important 18 | # information for Eclipse / Flash Builder. 19 | -------------------------------------------------------------------------------- /gitignores/ExpressionEngine.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Images 4 | images/avatars/ 5 | images/captchas/ 6 | images/smileys/ 7 | images/member_photos/ 8 | images/signature_attachments/ 9 | images/pm_attachments/ 10 | 11 | # For security do not publish the following files 12 | system/expressionengine/config/database.php 13 | system/expressionengine/config/config.php 14 | 15 | # Caches 16 | sized/ 17 | thumbs/ 18 | _thumbs/ 19 | */expressionengine/cache/* 20 | -------------------------------------------------------------------------------- /gitignores/LemonStand.gitignore: -------------------------------------------------------------------------------- 1 | boot.php 2 | index.php 3 | install.php 4 | /config/* 5 | !/config/config.php 6 | /controllers/* 7 | /init/* 8 | /logs/* 9 | /phproad/* 10 | /temp/* 11 | /uploaded/* 12 | /installer_files/* 13 | /modules/backend/* 14 | /modules/blog/* 15 | /modules/cms/* 16 | /modules/core/* 17 | /modules/session/* 18 | /modules/shop/* 19 | /modules/system/* 20 | /modules/users/* 21 | # add content_*.php if you don't want erase client changes to content 22 | -------------------------------------------------------------------------------- /gitignores/GWT.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Package Files # 4 | *.jar 5 | *.war 6 | 7 | # gwt caches and compiled units # 8 | war/gwt_bree/ 9 | gwt-unitCache/ 10 | 11 | # boilerplate generated classes # 12 | .apt_generated/ 13 | 14 | # more caches and things from deploy # 15 | war/WEB-INF/deploy/ 16 | war/WEB-INF/classes/ 17 | 18 | #compilation logs 19 | .gwt/ 20 | 21 | #gwt junit compilation files 22 | www-test/ 23 | 24 | #old GWT (1.5) created this dir 25 | .gwt-tmp/ 26 | -------------------------------------------------------------------------------- /gitignores/CakePHP.gitignore: -------------------------------------------------------------------------------- 1 | # CakePHP 3 2 | 3 | /vendor/* 4 | /config/app.php 5 | 6 | /tmp/cache/models/* 7 | !/tmp/cache/models/empty 8 | /tmp/cache/persistent/* 9 | !/tmp/cache/persistent/empty 10 | /tmp/cache/views/* 11 | !/tmp/cache/views/empty 12 | /tmp/sessions/* 13 | !/tmp/sessions/empty 14 | /tmp/tests/* 15 | !/tmp/tests/empty 16 | 17 | /logs/* 18 | !/logs/empty 19 | 20 | # CakePHP 2 21 | 22 | /app/tmp/* 23 | /app/Config/core.php 24 | /app/Config/database.php 25 | /vendors/* 26 | -------------------------------------------------------------------------------- /gitignores/MetaProgrammingSystem.gitignore: -------------------------------------------------------------------------------- 1 | workspace.xml 2 | junitvmwatcher*.properties 3 | build.properties 4 | 5 | # generated java classes and java source files 6 | # manually add any custom artifacts that can't be generated from the models 7 | # http://confluence.jetbrains.com/display/MPSD25/HowTo+--+MPS+and+Git 8 | classes_gen 9 | source_gen 10 | source_gen.caches 11 | 12 | # generated test code and test results 13 | test_gen 14 | test_gen.caches 15 | TEST-*.xml 16 | junit*.properties 17 | -------------------------------------------------------------------------------- /gitignores/Perl.gitignore: -------------------------------------------------------------------------------- 1 | !Build/ 2 | .last_cover_stats 3 | /META.yml 4 | /META.json 5 | /MYMETA.* 6 | *.o 7 | *.pm.tdy 8 | *.bs 9 | 10 | # Devel::Cover 11 | cover_db/ 12 | 13 | # Devel::NYTProf 14 | nytprof.out 15 | 16 | # Dizt::Zilla 17 | /.build/ 18 | 19 | # Module::Build 20 | _build/ 21 | Build 22 | Build.bat 23 | 24 | # Module::Install 25 | inc/ 26 | 27 | # ExtUtils::MakeMaker 28 | /blib/ 29 | /_eumm/ 30 | /*.gz 31 | /Makefile 32 | /Makefile.old 33 | /MANIFEST.bak 34 | /pm_to_blib 35 | /*.zip 36 | -------------------------------------------------------------------------------- /gitignores/KiCad.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *~ 10 | _autosave-* 11 | *.tmp 12 | *-save.pro 13 | *-save.kicad_pcb 14 | fp-info-cache 15 | 16 | # Netlist files (exported from Eeschema) 17 | *.net 18 | 19 | # Autorouter files (exported from Pcbnew) 20 | *.dsn 21 | *.ses 22 | 23 | # Exported BOM files 24 | *.xml 25 | *.csv 26 | -------------------------------------------------------------------------------- /gitignores/Zephir.gitignore: -------------------------------------------------------------------------------- 1 | # Cache files, generates by Zephir 2 | .temp/ 3 | .libs/ 4 | 5 | # Object files, generates by linker 6 | *.lo 7 | *.la 8 | *.o 9 | *.loT 10 | 11 | # Files generated by configure and Zephir, 12 | # not required for extension compilation. 13 | ext/build/ 14 | ext/modules/ 15 | ext/Makefile* 16 | ext/config* 17 | ext/acinclude.m4 18 | ext/aclocal.m4 19 | ext/autom4te* 20 | ext/install-sh 21 | ext/ltmain.sh 22 | ext/missing 23 | ext/mkinstalldirs 24 | ext/run-tests.php 25 | ext/.deps 26 | ext/libtool 27 | -------------------------------------------------------------------------------- /gitignores/Lua.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Lua sources 2 | luac.out 3 | 4 | # luarocks build files 5 | *.src.rock 6 | *.zip 7 | *.tar.gz 8 | 9 | # Object files 10 | *.o 11 | *.os 12 | *.ko 13 | *.obj 14 | *.elf 15 | 16 | # Precompiled Headers 17 | *.gch 18 | *.pch 19 | 20 | # Libraries 21 | *.lib 22 | *.a 23 | *.la 24 | *.lo 25 | *.def 26 | *.exp 27 | 28 | # Shared objects (inc. Windows DLLs) 29 | *.dll 30 | *.so 31 | *.so.* 32 | *.dylib 33 | 34 | # Executables 35 | *.exe 36 | *.out 37 | *.app 38 | *.i*86 39 | *.x86_64 40 | *.hex 41 | 42 | -------------------------------------------------------------------------------- /gitignores/Smalltalk.gitignore: -------------------------------------------------------------------------------- 1 | # changes file 2 | *.changes 3 | *.chg 4 | 5 | # system image 6 | *.image 7 | *.img7 8 | *.img 9 | 10 | # Pharo Smalltalk Debug log file 11 | PharoDebug.log 12 | 13 | # Squeak Smalltalk Debug log file 14 | SqueakDebug.log 15 | 16 | # Dolphin Smalltalk source file 17 | *.sml 18 | 19 | # Dolphin Smalltalk error file 20 | *.errors 21 | 22 | # Monticello package cache 23 | /package-cache 24 | 25 | # playground cache 26 | /play-cache 27 | /play-stash 28 | 29 | # Metacello-github cache 30 | /github-cache 31 | github-*.zip 32 | -------------------------------------------------------------------------------- /gitignores/WordPress.gitignore: -------------------------------------------------------------------------------- 1 | # ignore everything in the root except the "wp-content" directory. 2 | !wp-content/ 3 | 4 | # ignore everything in the "wp-content" directory, except: 5 | # "mu-plugins", "plugins", "themes" directory 6 | wp-content/* 7 | !wp-content/mu-plugins/ 8 | !wp-content/plugins/ 9 | !wp-content/themes/ 10 | 11 | # ignore these plugins 12 | wp-content/plugins/hello.php 13 | 14 | # ignore specific themes 15 | wp-content/themes/twenty*/ 16 | 17 | # ignore node dependency directories 18 | node_modules/ 19 | 20 | # ignore log files and databases 21 | *.log 22 | *.sql 23 | *.sqlite 24 | -------------------------------------------------------------------------------- /gitignores/JBoss.gitignore: -------------------------------------------------------------------------------- 1 | jboss/server/all/deploy/project.ext 2 | jboss/server/default/deploy/project.ext 3 | jboss/server/minimal/deploy/project.ext 4 | jboss/server/all/log/*.log 5 | jboss/server/all/tmp/**/* 6 | jboss/server/all/data/**/* 7 | jboss/server/all/work/**/* 8 | jboss/server/default/log/*.log 9 | jboss/server/default/tmp/**/* 10 | jboss/server/default/data/**/* 11 | jboss/server/default/work/**/* 12 | jboss/server/minimal/log/*.log 13 | jboss/server/minimal/tmp/**/* 14 | jboss/server/minimal/data/**/* 15 | jboss/server/minimal/work/**/* 16 | 17 | # deployed package files # 18 | 19 | *.DEPLOYED 20 | -------------------------------------------------------------------------------- /gitignores/Typo3.gitignore: -------------------------------------------------------------------------------- 1 | ## TYPO3 v6.2 2 | # Ignore several upload and file directories. 3 | /fileadmin/user_upload/ 4 | /fileadmin/_temp_/ 5 | /fileadmin/_processed_/ 6 | /uploads/ 7 | # Ignore cache 8 | /typo3conf/temp_CACHED* 9 | /typo3conf/temp_fieldInfo.php 10 | /typo3conf/deprecation_*.log 11 | /typo3conf/ENABLE_INSTALL_TOOL 12 | /typo3conf/realurl_autoconf.php 13 | /FIRST_INSTALL 14 | # Ignore system folders, you should have them symlinked. 15 | # If not comment out the following entries. 16 | /typo3 17 | /typo3_src 18 | /typo3_src-* 19 | /Packages 20 | /.htaccess 21 | /index.php 22 | # Ignore temp directory. 23 | /typo3temp/ 24 | -------------------------------------------------------------------------------- /gitignores/C.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /gitignores/R.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Session Data files 6 | .RData 7 | 8 | # User-specific files 9 | .Ruserdata 10 | 11 | # Example code in package build process 12 | *-Ex.R 13 | 14 | # Output files from R CMD build 15 | /*.tar.gz 16 | 17 | # Output files from R CMD check 18 | /*.Rcheck/ 19 | 20 | # RStudio files 21 | .Rproj.user/ 22 | 23 | # produced vignettes 24 | vignettes/*.html 25 | vignettes/*.pdf 26 | 27 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 28 | .httr-oauth 29 | 30 | # knitr and R markdown default cache directories 31 | *_cache/ 32 | /cache/ 33 | 34 | # Temporary files created by R markdown 35 | *.utf8.md 36 | *.knit.md 37 | -------------------------------------------------------------------------------- /gitignores/Dart.gitignore: -------------------------------------------------------------------------------- 1 | # See https://www.dartlang.org/guides/libraries/private-files 2 | 3 | # Files and directories created by pub 4 | .dart_tool/ 5 | .packages 6 | build/ 7 | # If you're building an application, you may want to check-in your pubspec.lock 8 | pubspec.lock 9 | 10 | # Directory created by dartdoc 11 | # If you don't generate documentation locally you can remove this line. 12 | doc/api/ 13 | 14 | # Avoid committing generated Javascript files: 15 | *.dart.js 16 | *.info.json # Produced by the --dump-info flag. 17 | *.js # When generated by dart2js. Don't specify *.js if your 18 | # project includes source files written in JavaScript. 19 | *.js_ 20 | *.js.deps 21 | *.js.map 22 | -------------------------------------------------------------------------------- /gitignores/Grails.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore for Grails 1.2 and 1.3 2 | # Although this should work for most versions of grails, it is 3 | # suggested that you use the "grails integrate-with --git" command 4 | # to generate your .gitignore file. 5 | 6 | # web application files 7 | /web-app/WEB-INF/classes 8 | 9 | # default HSQL database files for production mode 10 | /prodDb.* 11 | 12 | # general HSQL database files 13 | *Db.properties 14 | *Db.script 15 | 16 | # logs 17 | /stacktrace.log 18 | /test/reports 19 | /logs 20 | 21 | # project release file 22 | /*.war 23 | 24 | # plugin release files 25 | /*.zip 26 | /plugin.xml 27 | 28 | # older plugin install locations 29 | /plugins 30 | /web-app/plugins 31 | 32 | # "temporary" build files 33 | /target 34 | -------------------------------------------------------------------------------- /gitignores/FuelPHP.gitignore: -------------------------------------------------------------------------------- 1 | # the composer package lock file and install directory 2 | # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file 3 | # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file 4 | # /composer.lock 5 | /fuel/vendor 6 | 7 | # the fuelphp document 8 | /docs/ 9 | 10 | # you may install these packages with `oil package`. 11 | # http://fuelphp.com/docs/packages/oil/package.html 12 | # /fuel/packages/auth/ 13 | # /fuel/packages/email/ 14 | # /fuel/packages/oil/ 15 | # /fuel/packages/orm/ 16 | # /fuel/packages/parser/ 17 | 18 | # dynamically generated files 19 | /fuel/app/logs/*/*/* 20 | /fuel/app/cache/*/* 21 | /fuel/app/config/crypt.php 22 | -------------------------------------------------------------------------------- /gitignores/Eagle.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | *.b$? 8 | *.s$? 9 | *.l$? 10 | 11 | # Eagle project file 12 | # It contains a serial number and references to the file structure 13 | # on your computer. 14 | # comment the following line if you want to have your project file included. 15 | eagle.epf 16 | 17 | # Autorouter files 18 | *.pro 19 | *.job 20 | 21 | # CAM files 22 | *.$$$ 23 | *.cmp 24 | *.ly2 25 | *.l15 26 | *.sol 27 | *.plc 28 | *.stc 29 | *.sts 30 | *.crc 31 | *.crs 32 | 33 | *.dri 34 | *.drl 35 | *.gpi 36 | *.pls 37 | *.ger 38 | *.xln 39 | 40 | *.drd 41 | *.drd.* 42 | 43 | *.s#* 44 | *.b#* 45 | 46 | *.info 47 | 48 | *.eps 49 | 50 | # file locks introduced since 7.x 51 | *.lck 52 | -------------------------------------------------------------------------------- /gitignores/Autotools.gitignore: -------------------------------------------------------------------------------- 1 | # http://www.gnu.org/software/automake 2 | 3 | Makefile.in 4 | /ar-lib 5 | /mdate-sh 6 | /py-compile 7 | /test-driver 8 | /ylwrap 9 | 10 | # http://www.gnu.org/software/autoconf 11 | 12 | autom4te.cache 13 | /autoscan.log 14 | /autoscan-*.log 15 | /aclocal.m4 16 | /compile 17 | /config.guess 18 | /config.h.in 19 | /config.log 20 | /config.status 21 | /config.sub 22 | /configure 23 | /configure.scan 24 | /depcomp 25 | /install-sh 26 | /missing 27 | /stamp-h1 28 | 29 | # https://www.gnu.org/software/libtool/ 30 | 31 | /ltmain.sh 32 | 33 | # http://www.gnu.org/software/texinfo 34 | 35 | /texinfo.tex 36 | 37 | # http://www.gnu.org/software/m4/ 38 | 39 | m4/libtool.m4 40 | m4/ltoptions.m4 41 | m4/ltsugar.m4 42 | m4/ltversion.m4 43 | m4/lt~obsolete.m4 44 | -------------------------------------------------------------------------------- /gitignores/ROS.gitignore: -------------------------------------------------------------------------------- 1 | devel/ 2 | logs/ 3 | build/ 4 | bin/ 5 | lib/ 6 | msg_gen/ 7 | srv_gen/ 8 | msg/*Action.msg 9 | msg/*ActionFeedback.msg 10 | msg/*ActionGoal.msg 11 | msg/*ActionResult.msg 12 | msg/*Feedback.msg 13 | msg/*Goal.msg 14 | msg/*Result.msg 15 | msg/_*.py 16 | build_isolated/ 17 | devel_isolated/ 18 | 19 | # Generated by dynamic reconfigure 20 | *.cfgc 21 | /cfg/cpp/ 22 | /cfg/*.py 23 | 24 | # Ignore generated docs 25 | *.dox 26 | *.wikidoc 27 | 28 | # eclipse stuff 29 | .project 30 | .cproject 31 | 32 | # qcreator stuff 33 | CMakeLists.txt.user 34 | 35 | srv/_*.py 36 | *.pcd 37 | *.pyc 38 | qtcreator-* 39 | *.user 40 | 41 | /planning/cfg 42 | /planning/docs 43 | /planning/src 44 | 45 | *~ 46 | 47 | # Emacs 48 | .#* 49 | 50 | # Catkin custom files 51 | CATKIN_IGNORE 52 | -------------------------------------------------------------------------------- /gitignores/Qt.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | *.slo 3 | *.lo 4 | *.o 5 | *.a 6 | *.la 7 | *.lai 8 | *.so 9 | *.dll 10 | *.dylib 11 | 12 | # Qt-es 13 | object_script.*.Release 14 | object_script.*.Debug 15 | *_plugin_import.cpp 16 | /.qmake.cache 17 | /.qmake.stash 18 | *.pro.user 19 | *.pro.user.* 20 | *.qbs.user 21 | *.qbs.user.* 22 | *.moc 23 | moc_*.cpp 24 | moc_*.h 25 | qrc_*.cpp 26 | ui_*.h 27 | *.qmlc 28 | *.jsc 29 | Makefile* 30 | *build-* 31 | 32 | # Qt unit tests 33 | target_wrapper.* 34 | 35 | # QtCreator 36 | *.autosave 37 | 38 | # QtCreator Qml 39 | *.qmlproject.user 40 | *.qmlproject.user.* 41 | 42 | # QtCreator CMake 43 | CMakeLists.txt.user* 44 | 45 | # QtCreator 4.8< compilation database 46 | compile_commands.json 47 | 48 | # QtCreator local machine specific files for imported projects 49 | *creator.user* 50 | -------------------------------------------------------------------------------- /gitignores/Prestashop.gitignore: -------------------------------------------------------------------------------- 1 | # Private files 2 | # The following files contain your database credentials and other personal data. 3 | 4 | config/settings.*.php 5 | 6 | # Cache, temp and generated files 7 | # The following files are generated by PrestaShop. 8 | 9 | admin-dev/autoupgrade/ 10 | /cache/* 11 | !/cache/index.php 12 | !/cache/*/ 13 | /cache/*/* 14 | !/cache/cachefs/index.php 15 | !/cache/purifier/index.php 16 | !/cache/push/index.php 17 | !/cache/sandbox/index.php 18 | !/cache/smarty/index.php 19 | !/cache/tcpdf/index.php 20 | config/xml/*.xml 21 | /log/* 22 | *sitemap.xml 23 | themes/*/cache/ 24 | modules/*/config*.xml 25 | 26 | # Site content 27 | # The following folders contain product images, virtual products, CSV's, etc. 28 | 29 | admin-dev/backups/ 30 | admin-dev/export/ 31 | admin-dev/import/ 32 | download/ 33 | /img/* 34 | upload/ 35 | -------------------------------------------------------------------------------- /gitignores/Terraform.gitignore: -------------------------------------------------------------------------------- 1 | # Local .terraform directories 2 | **/.terraform/* 3 | 4 | # .tfstate files 5 | *.tfstate 6 | *.tfstate.* 7 | 8 | # Crash log files 9 | crash.log 10 | 11 | # Ignore any .tfvars files that are generated automatically for each Terraform run. Most 12 | # .tfvars files are managed as part of configuration and so should be included in 13 | # version control. 14 | # 15 | # example.tfvars 16 | 17 | # Ignore override files as they are usually used to override resources locally and so 18 | # are not checked in 19 | override.tf 20 | override.tf.json 21 | *_override.tf 22 | *_override.tf.json 23 | 24 | # Include override files you do wish to add to version control using negated pattern 25 | # 26 | # !example_override.tf 27 | 28 | # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan 29 | # example: *tfplan* 30 | -------------------------------------------------------------------------------- /gitignores/JENKINS_HOME.gitignore: -------------------------------------------------------------------------------- 1 | #Learn more about Jenkins and JENKINS_HOME directory for which this file is intended. 2 | # http://jenkins-ci.org/ 3 | # https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins 4 | 5 | #ignore all JENKINS_HOME except jobs directory, root xml config, and .gitignore file 6 | /* 7 | !/jobs 8 | !/.gitignore 9 | !/*.xml 10 | 11 | #ignore all files in jobs subdirectories except for folders 12 | #note: git doesn't track folders, only file content 13 | jobs/** 14 | !jobs/**/ 15 | 16 | #uncomment the following line to save next build numbers with config 17 | #!jobs/**/nextBuildNumber 18 | 19 | #exclude only config.xml files in repository subdirectories 20 | !config.xml 21 | 22 | #don't track workspaces (when users build on the master) 23 | jobs/**/*workspace 24 | 25 | #as a result only settings and job config.xml files in JENKINS_HOME will be tracked by git 26 | -------------------------------------------------------------------------------- /gitignores/Julia.gitignore: -------------------------------------------------------------------------------- 1 | # Files generated by invoking Julia with --code-coverage 2 | *.jl.cov 3 | *.jl.*.cov 4 | 5 | # Files generated by invoking Julia with --track-allocation 6 | *.jl.mem 7 | 8 | # System-specific files and directories generated by the BinaryProvider and BinDeps packages 9 | # They contain absolute paths specific to the host computer, and so should not be committed 10 | deps/deps.jl 11 | deps/build.log 12 | deps/downloads/ 13 | deps/usr/ 14 | deps/src/ 15 | 16 | # Build artifacts for creating documentation generated by the Documenter package 17 | docs/build/ 18 | docs/site/ 19 | 20 | # File generated by Pkg, the package manager, based on a corresponding Project.toml 21 | # It records a fixed state of all packages used by the project. As such, it should not be 22 | # committed for packages, but should be committed for applications that require a static 23 | # environment. 24 | Manifest.toml 25 | -------------------------------------------------------------------------------- /gitignores/SugarCRM.gitignore: -------------------------------------------------------------------------------- 1 | ## SugarCRM 2 | # Ignore custom .htaccess stuff. 3 | /.htaccess 4 | # Ignore the cache directory completely. 5 | # This will break the current behaviour. Which was often leading to 6 | # the misuse of the repository as backup replacement. 7 | # For development the cache directory can be safely ignored and 8 | # therefore it is ignored. 9 | /cache/* 10 | !/cache/index.html 11 | # Ignore some files and directories from the custom directory. 12 | /custom/history/ 13 | /custom/modulebuilder/ 14 | /custom/working/ 15 | /custom/modules/*/Ext/ 16 | /custom/application/Ext/ 17 | # Custom configuration should also be ignored. 18 | /config.php 19 | /config_override.php 20 | # The silent upgrade scripts aren't needed. 21 | /silentUpgrade*.php 22 | # Logs files can safely be ignored. 23 | *.log 24 | # Ignore the new upload directories. 25 | /upload/* 26 | !/upload/index.html 27 | /upload_backup/ 28 | -------------------------------------------------------------------------------- /gitignores/Umbraco.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Umbraco files/folders generated for each instance 2 | ## 3 | ## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore 4 | 5 | # Note: VisualStudio gitignore rules may also be relevant 6 | 7 | # Umbraco 8 | # Ignore unimportant folders generated by Umbraco 9 | **/App_Data/Logs/ 10 | **/App_Data/[Pp]review/ 11 | **/App_Data/TEMP/ 12 | **/App_Data/NuGetBackup/ 13 | 14 | # Ignore Umbraco content cache file 15 | **/App_Data/umbraco.config 16 | 17 | # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) 18 | # Make sure to include details from VisualStudio.gitignore BEFORE this 19 | !**/App_Data/[Pp]ackages/* 20 | !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/* 21 | 22 | # ImageProcessor DiskCache 23 | **/App_Data/cache/ 24 | 25 | # Ignore the Models Builder models out of date flag 26 | **/App_Data/Models/ood.flag 27 | -------------------------------------------------------------------------------- /gitignores/Magento.gitignore: -------------------------------------------------------------------------------- 1 | #--------------------------# 2 | # Magento Default Files # 3 | #--------------------------# 4 | 5 | /PATCH_*.sh 6 | 7 | /app/etc/local.xml 8 | 9 | /media/* 10 | !/media/.htaccess 11 | 12 | !/media/customer 13 | /media/customer/* 14 | !/media/customer/.htaccess 15 | 16 | !/media/dhl 17 | /media/dhl/* 18 | !/media/dhl/logo.jpg 19 | 20 | !/media/downloadable 21 | /media/downloadable/* 22 | !/media/downloadable/.htaccess 23 | 24 | !/media/xmlconnect 25 | /media/xmlconnect/* 26 | 27 | !/media/xmlconnect/custom 28 | /media/xmlconnect/custom/* 29 | !/media/xmlconnect/custom/ok.gif 30 | 31 | !/media/xmlconnect/original 32 | /media/xmlconnect/original/* 33 | !/media/xmlconnect/original/ok.gif 34 | 35 | !/media/xmlconnect/system 36 | /media/xmlconnect/system/* 37 | !/media/xmlconnect/system/ok.gif 38 | 39 | /var/* 40 | !/var/.htaccess 41 | 42 | !/var/package 43 | /var/package/* 44 | !/var/package/*.xml 45 | 46 | -------------------------------------------------------------------------------- /gitignores/Symfony.gitignore: -------------------------------------------------------------------------------- 1 | # Cache and logs (Symfony2) 2 | /app/cache/* 3 | /app/logs/* 4 | !app/cache/.gitkeep 5 | !app/logs/.gitkeep 6 | 7 | # Email spool folder 8 | /app/spool/* 9 | 10 | # Cache, session files and logs (Symfony3) 11 | /var/cache/* 12 | /var/logs/* 13 | /var/sessions/* 14 | !var/cache/.gitkeep 15 | !var/logs/.gitkeep 16 | !var/sessions/.gitkeep 17 | 18 | # Logs (Symfony4) 19 | /var/log/* 20 | !var/log/.gitkeep 21 | 22 | # Parameters 23 | /app/config/parameters.yml 24 | /app/config/parameters.ini 25 | 26 | # Managed by Composer 27 | /app/bootstrap.php.cache 28 | /var/bootstrap.php.cache 29 | /bin/* 30 | !bin/console 31 | !bin/symfony_requirements 32 | /vendor/ 33 | 34 | # Assets and user uploads 35 | /web/bundles/ 36 | /web/uploads/ 37 | 38 | # PHPUnit 39 | /app/phpunit.xml 40 | /phpunit.xml 41 | 42 | # Build data 43 | /build/ 44 | 45 | # Composer PHAR 46 | /composer.phar 47 | 48 | # Backup entities generated with doctrine:generate:entities command 49 | **/Entity/*~ 50 | 51 | # Embedded web-server pid file 52 | /.web-server-pid 53 | -------------------------------------------------------------------------------- /gitignores/SeamGen.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap/data 2 | /bootstrap/tmp 3 | /classes/ 4 | /dist/ 5 | /exploded-archives/ 6 | /test-build/ 7 | /test-output/ 8 | /test-report/ 9 | /target/ 10 | temp-testng-customsuite.xml 11 | 12 | # based on http://stackoverflow.com/a/8865858/422476 I am removing inline comments 13 | 14 | #/classes/ all class files 15 | #/dist/ contains generated war files for deployment 16 | #/exploded-archives/ war content generation during deploy (or explode) 17 | #/test-build/ test compilation (ant target for Seam) 18 | #/test-output/ test results 19 | #/test-report/ test report generation for, e.g., Hudson 20 | #/target/ maven output folder 21 | #temp-testng-customsuite.xml generated when running test cases under Eclipse 22 | 23 | # Thanks to @VonC and @kraftan for their helpful answers on a related question 24 | # on StackOverflow.com: 25 | # http://stackoverflow.com/questions/4176687 26 | # /what-is-the-recommended-source-control-ignore-pattern-for-seam-projects 27 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gitignore-it", 3 | "version": "1.0.4", 4 | "description": "A command-line CLI to generate .gitignore files", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node index.js", 8 | "lint": "eslint *.js" 9 | }, 10 | "bin": { 11 | "gitignore": "./index.js" 12 | }, 13 | "keywords": [ 14 | "cli", 15 | "gitignore" 16 | ], 17 | "preferGlobal": true, 18 | "author": "Christopher Kade", 19 | "license": "MIT", 20 | "dependencies": { 21 | "prompts": "^2.1.0" 22 | }, 23 | "devDependencies": { 24 | "eslint": "^5.16.0", 25 | "eslint-config-airbnb-base": "^13.1.0", 26 | "eslint-plugin-import": "^2.17.3", 27 | "jest": "^24.8.0" 28 | }, 29 | "engines": { 30 | "npm": ">=5.5.0", 31 | "node": ">=9.3.0" 32 | }, 33 | "bugs": { 34 | "url": "https://github.com/christopherkade/gitignore-it/issues" 35 | }, 36 | "repository": { 37 | "type": "git", 38 | "url": "git+https://github.com/christopherkade/gitignore-it.git" 39 | }, 40 | "homepage": "https://github.com/christopherkade/gitignore-it" 41 | } 42 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Christopher Kade 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /gitignores/Drupal.gitignore: -------------------------------------------------------------------------------- 1 | # gitignore template for Drupal 8 projects 2 | # 3 | # earlier versions of Drupal are tracked in `community/PHP/` 4 | 5 | # Ignore configuration files that may contain sensitive information 6 | /sites/*/*settings*.php 7 | /sites/*/*services*.yml 8 | 9 | # Ignore paths that may contain user-generated content 10 | /sites/*/files 11 | /sites/*/public 12 | /sites/*/private 13 | /sites/*/files-public 14 | /sites/*/files-private 15 | 16 | # Ignore paths that may contain temporary files 17 | /sites/*/translations 18 | /sites/*/tmp 19 | /sites/*/cache 20 | 21 | # Ignore testing related files 22 | /sites/simpletest 23 | 24 | # Ignore drupal core (if not versioning drupal sources) 25 | /core 26 | /modules/README.txt 27 | /profiles/README.txt 28 | /sites/README.txt 29 | /sites/example.sites.php 30 | /sites/example.settings.local.php 31 | /sites/development.services.yml 32 | /themes/README.txt 33 | /vendor 34 | /.csslintrc 35 | /.editorconfig 36 | /.eslintignore 37 | /.eslintrc.json 38 | /.gitattributes 39 | /.htaccess 40 | /autoload.php 41 | /composer.json 42 | /composer.lock 43 | /example.gitignore 44 | /index.php 45 | /LICENSE.txt 46 | /README.txt 47 | /robots.txt 48 | /update.php 49 | /web.config 50 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | const prompts = require('prompts'); 4 | 5 | const { 6 | getGitignoreNames, getFileType, writeFile, readFile, 7 | } = require('./file_utils'); 8 | 9 | (async () => { 10 | // Get .gitignore file names 11 | const gitignores = await getGitignoreNames() 12 | // Extract each .gitignore's type 13 | const gitignoreTypes = getFileType(gitignores) 14 | 15 | // Query the user 16 | const { file } = await prompts( 17 | [ 18 | { 19 | type: 'confirm', 20 | name: 'confirmation', 21 | message: 'Would you like multiple .gitignore files?', 22 | initial: false, 23 | }, 24 | { 25 | type: prev => (prev === false ? 'autocomplete' : 'autocompleteMultiselect'), 26 | name: 'file', 27 | message: 'What type of .gitignore file do you need?', 28 | choices: gitignoreTypes, 29 | min: 1, 30 | limit: 15, 31 | }, 32 | ], 33 | ) 34 | 35 | if (!file) { 36 | console.info('👋 No type selected, exiting.') 37 | return 38 | } 39 | 40 | // Get gitignore content based on the answer 41 | const gitignoreContent = await readFile(`${file}`) 42 | 43 | // Create the .gitignore file 44 | await writeFile('.gitignore', gitignoreContent) 45 | })(); 46 | -------------------------------------------------------------------------------- /gitignores/Unity.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Never ignore Asset meta data 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # TextMesh Pro files 20 | [Aa]ssets/TextMesh*Pro/ 21 | 22 | # Autogenerated Jetbrains Rider plugin 23 | [Aa]ssets/Plugins/Editor/JetBrains* 24 | 25 | # Visual Studio cache directory 26 | .vs/ 27 | 28 | # Gradle cache directory 29 | .gradle/ 30 | 31 | # Autogenerated VS/MD/Consulo solution and project files 32 | ExportedObj/ 33 | .consulo/ 34 | *.csproj 35 | *.unityproj 36 | *.sln 37 | *.suo 38 | *.tmp 39 | *.user 40 | *.userprefs 41 | *.pidb 42 | *.booproj 43 | *.svd 44 | *.pdb 45 | *.mdb 46 | *.opendb 47 | *.VC.db 48 | 49 | # Unity3D generated meta files 50 | *.pidb.meta 51 | *.pdb.meta 52 | *.mdb.meta 53 | 54 | # Unity3D generated file on crash reports 55 | sysinfo.txt 56 | 57 | # Builds 58 | *.apk 59 | *.unitypackage 60 | 61 | # Crashlytics generated file 62 | crashlytics-build.properties 63 | 64 | -------------------------------------------------------------------------------- /gitignores/UnrealEngine.gitignore: -------------------------------------------------------------------------------- 1 | # Visual Studio 2015 user specific files 2 | .vs/ 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | 22 | # Compiled Static libraries 23 | *.lai 24 | *.la 25 | *.a 26 | *.lib 27 | 28 | # Executables 29 | *.exe 30 | *.out 31 | *.app 32 | *.ipa 33 | 34 | # These project files can be generated by the engine 35 | *.xcodeproj 36 | *.xcworkspace 37 | *.sln 38 | *.suo 39 | *.opensdf 40 | *.sdf 41 | *.VC.db 42 | *.VC.opendb 43 | 44 | # Precompiled Assets 45 | SourceArt/**/*.png 46 | SourceArt/**/*.tga 47 | 48 | # Binary Files 49 | Binaries/* 50 | Plugins/*/Binaries/* 51 | 52 | # Builds 53 | Build/* 54 | 55 | # Whitelist PakBlacklist-.txt files 56 | !Build/*/ 57 | Build/*/** 58 | !Build/*/PakBlacklist*.txt 59 | 60 | # Don't ignore icon files in Build 61 | !Build/**/*.ico 62 | 63 | # Built data for maps 64 | *_BuiltData.uasset 65 | 66 | # Configuration files generated by the Editor 67 | Saved/* 68 | 69 | # Compiled source files for the engine to use 70 | Intermediate/* 71 | Plugins/*/Intermediate/* 72 | 73 | # Cache files for the editor to use 74 | DerivedDataCache/* 75 | -------------------------------------------------------------------------------- /gitignores/Ruby.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | /.config 4 | /coverage/ 5 | /InstalledFiles 6 | /pkg/ 7 | /spec/reports/ 8 | /spec/examples.txt 9 | /test/tmp/ 10 | /test/version_tmp/ 11 | /tmp/ 12 | 13 | # Used by dotenv library to load environment variables. 14 | # .env 15 | 16 | # Ignore Byebug command history file. 17 | .byebug_history 18 | 19 | ## Specific to RubyMotion: 20 | .dat* 21 | .repl_history 22 | build/ 23 | *.bridgesupport 24 | build-iPhoneOS/ 25 | build-iPhoneSimulator/ 26 | 27 | ## Specific to RubyMotion (use of CocoaPods): 28 | # 29 | # We recommend against adding the Pods directory to your .gitignore. However 30 | # you should judge for yourself, the pros and cons are mentioned at: 31 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 32 | # 33 | # vendor/Pods/ 34 | 35 | ## Documentation cache and generated files: 36 | /.yardoc/ 37 | /_yardoc/ 38 | /doc/ 39 | /rdoc/ 40 | 41 | ## Environment normalization: 42 | /.bundle/ 43 | /vendor/bundle 44 | /lib/bundler/man/ 45 | 46 | # for a library or gem, you might want to ignore these files since the code is 47 | # intended to run in multiple environments; otherwise, check them in: 48 | # Gemfile.lock 49 | # .ruby-version 50 | # .ruby-gemset 51 | 52 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 53 | .rvmrc 54 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Welcome to gitignore-it

2 |

3 | 4 | 5 | License MIT 6 | 7 |

8 | 9 | > A CLI to generate .gitignore files 10 | 11 | ![gitignoreit](https://user-images.githubusercontent.com/15229355/59565299-e9c0fb00-9051-11e9-8012-04478bf9268c.gif) 12 | 13 | ## Install 14 | 15 | ```sh 16 | # Using Yarn 17 | yarn global add gitignore-it 18 | 19 | # Using npm 20 | npm install -g gitignore-it 21 | ``` 22 | 23 | ## Usage 24 | 25 | ```sh 26 | gitignore 27 | ``` 28 | 29 | ## Author 30 | 31 | 👤 **Christopher Kade** 32 | 33 | * Twitter: [@christo_kade](https://twitter.com/christo_kade) 34 | * Github: [@christopherkade](https://github.com/christopherkade) 35 | 36 | ## 🤝 Contributing 37 | 38 | Contributions, issues and feature requests are welcome !
Feel free to check [issues page](https://github.com/christopherkade/gitignore-it/issues). 39 | 40 | A quick contribution would be to add a new type of `.gitignore` file. Simply create the appropriate file in the `/gitignores` folder. 41 | 42 | ## Show your support 43 | 44 | Give a ⭐️ if this project helped you ! 45 | 46 | *** 47 | _This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_ 48 | -------------------------------------------------------------------------------- /gitignores/Rails.gitignore: -------------------------------------------------------------------------------- 1 | *.rbc 2 | capybara-*.html 3 | .rspec 4 | /db/*.sqlite3 5 | /db/*.sqlite3-journal 6 | /public/system 7 | /coverage/ 8 | /spec/tmp 9 | *.orig 10 | rerun.txt 11 | pickle-email-*.html 12 | 13 | # Ignore all logfiles and tempfiles. 14 | /log/* 15 | /tmp/* 16 | !/log/.keep 17 | !/tmp/.keep 18 | 19 | # TODO Comment out this rule if you are OK with secrets being uploaded to the repo 20 | config/initializers/secret_token.rb 21 | config/master.key 22 | 23 | # Only include if you have production secrets in this file, which is no longer a Rails default 24 | # config/secrets.yml 25 | 26 | # dotenv 27 | # TODO Comment out this rule if environment variables can be committed 28 | .env 29 | 30 | ## Environment normalization: 31 | /.bundle 32 | /vendor/bundle 33 | 34 | # these should all be checked in to normalize the environment: 35 | # Gemfile.lock, .ruby-version, .ruby-gemset 36 | 37 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 38 | .rvmrc 39 | 40 | # if using bower-rails ignore default bower_components path bower.json files 41 | /vendor/assets/bower_components 42 | *.bowerrc 43 | bower.json 44 | 45 | # Ignore pow environment settings 46 | .powenv 47 | 48 | # Ignore Byebug command history file. 49 | .byebug_history 50 | 51 | # Ignore node_modules 52 | node_modules/ 53 | 54 | # Ignore precompiled javascript packs 55 | /public/packs 56 | /public/packs-test 57 | /public/assets 58 | 59 | # Ignore yarn files 60 | /yarn-error.log 61 | yarn-debug.log* 62 | .yarn-integrity 63 | 64 | # Ignore uploaded files in development 65 | /storage/* 66 | !/storage/.keep 67 | -------------------------------------------------------------------------------- /gitignores/React.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Editors 32 | *.sublime-project 33 | *.sublime-workspace 34 | .idea 35 | *.iml 36 | .vscode 37 | *.swp 38 | *.swo 39 | 40 | # Bower dependency directory (https://bower.io/) 41 | bower_components 42 | 43 | # node-waf configuration 44 | .lock-wscript 45 | 46 | # production 47 | build/ 48 | dist/ 49 | 50 | # Dependency directories 51 | node_modules/ 52 | jspm_packages/ 53 | /.pnp 54 | .pnp.js 55 | 56 | # TypeScript v1 declaration files 57 | typings/ 58 | 59 | # TypeScript cache 60 | *.tsbuildinfo 61 | 62 | # Optional npm cache directory 63 | .npm 64 | 65 | # Optional eslint cache 66 | .eslintcache 67 | 68 | # Optional REPL history 69 | .node_repl_history 70 | 71 | # Output of 'npm pack' 72 | *.tgz 73 | 74 | # Yarn Integrity file 75 | .yarn-integrity 76 | 77 | # dotenv environment variables file 78 | .DS_Store 79 | .env 80 | .env.test 81 | .env.local 82 | .env.development.local 83 | .env.test.local 84 | .env.production.local 85 | 86 | # parcel-bundler cache (https://parceljs.org/) 87 | .cache 88 | 89 | # next.js build output 90 | .next 91 | -------------------------------------------------------------------------------- /gitignores/Android.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | *.aab 5 | 6 | # Files for the ART/Dalvik VM 7 | *.dex 8 | 9 | # Java class files 10 | *.class 11 | 12 | # Generated files 13 | bin/ 14 | gen/ 15 | out/ 16 | release/ 17 | 18 | # Gradle files 19 | .gradle/ 20 | build/ 21 | 22 | # Local configuration file (sdk path, etc) 23 | local.properties 24 | 25 | # Proguard folder generated by Eclipse 26 | proguard/ 27 | 28 | # Log Files 29 | *.log 30 | 31 | # Android Studio Navigation editor temp files 32 | .navigation/ 33 | 34 | # Android Studio captures folder 35 | captures/ 36 | 37 | # IntelliJ 38 | *.iml 39 | .idea/workspace.xml 40 | .idea/tasks.xml 41 | .idea/gradle.xml 42 | .idea/assetWizardSettings.xml 43 | .idea/dictionaries 44 | .idea/libraries 45 | # Android Studio 3 in .gitignore file. 46 | .idea/caches 47 | .idea/modules.xml 48 | # Comment next line if keeping position of elements in Navigation Editor is relevant for you 49 | .idea/navEditor.xml 50 | 51 | # Keystore files 52 | # Uncomment the following lines if you do not want to check your keystore files in. 53 | #*.jks 54 | #*.keystore 55 | 56 | # External native build folder generated in Android Studio 2.2 and later 57 | .externalNativeBuild 58 | 59 | # Google Services (e.g. APIs or Firebase) 60 | # google-services.json 61 | 62 | # Freeline 63 | freeline.py 64 | freeline/ 65 | freeline_project_description.json 66 | 67 | # fastlane 68 | fastlane/report.xml 69 | fastlane/Preview.html 70 | fastlane/screenshots 71 | fastlane/test_output 72 | fastlane/readme.md 73 | 74 | # Version control 75 | vcs.xml 76 | 77 | # lint 78 | lint/intermediates/ 79 | lint/generated/ 80 | lint/outputs/ 81 | lint/tmp/ 82 | # lint/reports/ 83 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Optional REPL history 57 | .node_repl_history 58 | 59 | # Output of 'npm pack' 60 | *.tgz 61 | 62 | # Yarn Integrity file 63 | .yarn-integrity 64 | 65 | # dotenv environment variables file 66 | .env 67 | .env.test 68 | 69 | # parcel-bundler cache (https://parceljs.org/) 70 | .cache 71 | 72 | # next.js build output 73 | .next 74 | 75 | # nuxt.js build output 76 | .nuxt 77 | 78 | # vuepress build output 79 | .vuepress/dist 80 | 81 | # Serverless directories 82 | .serverless/ 83 | 84 | # FuseBox cache 85 | .fusebox/ 86 | 87 | # DynamoDB Local files 88 | .dynamodb/ 89 | -------------------------------------------------------------------------------- /gitignores/Vue.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Optional REPL history 57 | .node_repl_history 58 | 59 | # Output of 'npm pack' 60 | *.tgz 61 | 62 | # Yarn Integrity file 63 | .yarn-integrity 64 | 65 | # dotenv environment variables file 66 | .env 67 | .env.test 68 | 69 | # parcel-bundler cache (https://parceljs.org/) 70 | .cache 71 | 72 | # next.js build output 73 | .next 74 | 75 | # nuxt.js build output 76 | .nuxt 77 | 78 | # vuepress build output 79 | .vuepress/dist 80 | 81 | # Serverless directories 82 | .serverless/ 83 | 84 | # FuseBox cache 85 | .fusebox/ 86 | 87 | # DynamoDB Local files 88 | .dynamodb/ 89 | -------------------------------------------------------------------------------- /gitignores/Node.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Optional REPL history 57 | .node_repl_history 58 | 59 | # Output of 'npm pack' 60 | *.tgz 61 | 62 | # Yarn Integrity file 63 | .yarn-integrity 64 | 65 | # dotenv environment variables file 66 | .env 67 | .env.test 68 | 69 | # parcel-bundler cache (https://parceljs.org/) 70 | .cache 71 | 72 | # next.js build output 73 | .next 74 | 75 | # nuxt.js build output 76 | .nuxt 77 | 78 | # vuepress build output 79 | .vuepress/dist 80 | 81 | # Serverless directories 82 | .serverless/ 83 | 84 | # FuseBox cache 85 | .fusebox/ 86 | 87 | # DynamoDB Local files 88 | .dynamodb/ 89 | -------------------------------------------------------------------------------- /gitignores/Objective-C.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | # CocoaPods 32 | # 33 | # We recommend against adding the Pods directory to your .gitignore. However 34 | # you should judge for yourself, the pros and cons are mentioned at: 35 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 36 | # 37 | # Pods/ 38 | # 39 | # Add this line if you want to avoid checking in source code from the Xcode workspace 40 | # *.xcworkspace 41 | 42 | # Carthage 43 | # 44 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 45 | # Carthage/Checkouts 46 | 47 | Carthage/Build 48 | 49 | # fastlane 50 | # 51 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 52 | # screenshots whenever they are needed. 53 | # For more information about the recommended setup visit: 54 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 55 | 56 | fastlane/report.xml 57 | fastlane/Preview.html 58 | fastlane/screenshots/**/*.png 59 | fastlane/test_output 60 | 61 | # Code Injection 62 | # 63 | # After new code Injection tools there's a generated folder /iOSInjectionProject 64 | # https://github.com/johnno1962/injectionforxcode 65 | 66 | iOSInjectionProject/ 67 | -------------------------------------------------------------------------------- /file_utils.js: -------------------------------------------------------------------------------- 1 | const { promisify } = require('util') 2 | const fs = require('fs') 3 | const path = require('path'); 4 | 5 | // The folder's path containing all of our .gitignore files 6 | const folderPath = path.join(__dirname, '/gitignores') 7 | 8 | /** 9 | * Returns an array of the names of the files contained in folderPath 10 | */ 11 | const getGitignoreNames = async () => { 12 | const readdir = promisify(fs.readdir) 13 | const files = await readdir(folderPath).catch((err) => { 14 | console.error(`Error reading ${folderPath}: ${err}`) 15 | }) 16 | 17 | return files 18 | } 19 | 20 | /** 21 | * Returns an array of file types based on the following format: 22 | * type.gitignore 23 | * @param {*} files 24 | */ 25 | const getFileType = files => files.map(file => ({ 26 | title: file.split('.')[0], 27 | value: file.split('.')[0], 28 | })) 29 | 30 | /** 31 | * Write the .gitignore file content 32 | * @param {*} file 33 | * @param {*} content 34 | */ 35 | const writeFile = async (file, content) => { 36 | const asyncWriteFile = promisify(fs.writeFile) 37 | await asyncWriteFile(file, content) 38 | .then(console.info('📄 .gitignore created successfully')) 39 | .catch(e => console.error(e)) 40 | } 41 | 42 | /** 43 | * Read a file content 44 | * @param {*} files 45 | */ 46 | const readFile = async (files) => { 47 | const asyncReadFile = promisify(fs.readFile) 48 | 49 | if (files.includes(',')) { 50 | const filesToIterate = files.split(',') 51 | return Promise.all(filesToIterate.map(file => asyncReadFile(`${folderPath}/${file}.gitignore`, { encoding: 'utf-8' }))) 52 | .catch(e => console.error(e)) 53 | } 54 | 55 | return asyncReadFile(`${folderPath}/${files}.gitignore`, { encoding: 'utf-8' }) 56 | .catch(e => console.error(e)) 57 | } 58 | 59 | module.exports = { 60 | getGitignoreNames, 61 | getFileType, 62 | writeFile, 63 | readFile, 64 | } 65 | -------------------------------------------------------------------------------- /gitignores/Delphi.gitignore: -------------------------------------------------------------------------------- 1 | # Uncomment these types if you want even more clean repository. But be careful. 2 | # It can make harm to an existing project source. Read explanations below. 3 | # 4 | # Resource files are binaries containing manifest, project icon and version info. 5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. 6 | #*.res 7 | # 8 | # Type library file (binary). In old Delphi versions it should be stored. 9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored. 10 | #*.tlb 11 | # 12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7. 13 | # Uncomment this if you are not using diagrams or use newer Delphi version. 14 | #*.ddp 15 | # 16 | # Visual LiveBindings file. Added in Delphi XE2. 17 | # Uncomment this if you are not using LiveBindings Designer. 18 | #*.vlb 19 | # 20 | # Deployment Manager configuration file for your project. Added in Delphi XE2. 21 | # Uncomment this if it is not mobile development and you do not use remote debug feature. 22 | #*.deployproj 23 | # 24 | # C++ object files produced when C/C++ Output file generation is configured. 25 | # Uncomment this if you are not using external objects (zlib library for example). 26 | #*.obj 27 | # 28 | 29 | # Delphi compiler-generated binaries (safe to delete) 30 | *.exe 31 | *.dll 32 | *.bpl 33 | *.bpi 34 | *.dcp 35 | *.so 36 | *.apk 37 | *.drc 38 | *.map 39 | *.dres 40 | *.rsm 41 | *.tds 42 | *.dcu 43 | *.lib 44 | *.a 45 | *.o 46 | *.ocx 47 | 48 | # Delphi autogenerated files (duplicated info) 49 | *.cfg 50 | *.hpp 51 | *Resource.rc 52 | 53 | # Delphi local files (user-specific info) 54 | *.local 55 | *.identcache 56 | *.projdata 57 | *.tvsconfig 58 | *.dsk 59 | 60 | # Delphi history and backups 61 | __history/ 62 | __recovery/ 63 | *.~* 64 | 65 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi) 66 | *.stat 67 | 68 | # Boss dependency manager vendor folder https://github.com/HashLoad/boss 69 | modules/ 70 | -------------------------------------------------------------------------------- /gitignores/Swift.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | # Package.resolved 41 | .build/ 42 | 43 | # CocoaPods 44 | # 45 | # We recommend against adding the Pods directory to your .gitignore. However 46 | # you should judge for yourself, the pros and cons are mentioned at: 47 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 48 | # 49 | # Pods/ 50 | # 51 | # Add this line if you want to avoid checking in source code from the Xcode workspace 52 | # *.xcworkspace 53 | 54 | # Carthage 55 | # 56 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 57 | # Carthage/Checkouts 58 | 59 | Carthage/Build 60 | 61 | # Accio dependency management 62 | Dependencies/ 63 | .accio/ 64 | 65 | # fastlane 66 | # 67 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 68 | # screenshots whenever they are needed. 69 | # For more information about the recommended setup visit: 70 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 71 | 72 | fastlane/report.xml 73 | fastlane/Preview.html 74 | fastlane/screenshots/**/*.png 75 | fastlane/test_output 76 | 77 | # Code Injection 78 | # 79 | # After new code Injection tools there's a generated folder /iOSInjectionProject 80 | # https://github.com/johnno1962/injectionforxcode 81 | 82 | iOSInjectionProject/ 83 | -------------------------------------------------------------------------------- /gitignores/Python.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | 53 | # Translations 54 | *.mo 55 | *.pot 56 | 57 | # Django stuff: 58 | *.log 59 | local_settings.py 60 | db.sqlite3 61 | db.sqlite3-journal 62 | 63 | # Flask stuff: 64 | instance/ 65 | .webassets-cache 66 | 67 | # Scrapy stuff: 68 | .scrapy 69 | 70 | # Sphinx documentation 71 | docs/_build/ 72 | 73 | # PyBuilder 74 | target/ 75 | 76 | # Jupyter Notebook 77 | .ipynb_checkpoints 78 | 79 | # IPython 80 | profile_default/ 81 | ipython_config.py 82 | 83 | # pyenv 84 | .python-version 85 | 86 | # pipenv 87 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 88 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 89 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 90 | # install all needed dependencies. 91 | #Pipfile.lock 92 | 93 | # celery beat schedule file 94 | celerybeat-schedule 95 | 96 | # SageMath parsed files 97 | *.sage.py 98 | 99 | # Environments 100 | .env 101 | .venv 102 | env/ 103 | venv/ 104 | ENV/ 105 | env.bak/ 106 | venv.bak/ 107 | 108 | # Spyder project settings 109 | .spyderproject 110 | .spyproject 111 | 112 | # Rope project settings 113 | .ropeproject 114 | 115 | # mkdocs documentation 116 | /site 117 | 118 | # mypy 119 | .mypy_cache/ 120 | .dmypy.json 121 | dmypy.json 122 | 123 | # Pyre type checker 124 | .pyre/ 125 | -------------------------------------------------------------------------------- /gitignores/TeX.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | 15 | ## Intermediate documents: 16 | *.dvi 17 | *.xdv 18 | *-converted-to.* 19 | # these rules might exclude image files for figures etc. 20 | # *.ps 21 | # *.eps 22 | # *.pdf 23 | 24 | ## Generated if empty string is given at "Please type another file name for output:" 25 | .pdf 26 | 27 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 28 | *.bbl 29 | *.bcf 30 | *.blg 31 | *-blx.aux 32 | *-blx.bib 33 | *.run.xml 34 | 35 | ## Build tool auxiliary files: 36 | *.fdb_latexmk 37 | *.synctex 38 | *.synctex(busy) 39 | *.synctex.gz 40 | *.synctex.gz(busy) 41 | *.pdfsync 42 | 43 | ## Build tool directories for auxiliary files 44 | # latexrun 45 | latex.out/ 46 | 47 | ## Auxiliary and intermediate files from other packages: 48 | # algorithms 49 | *.alg 50 | *.loa 51 | 52 | # achemso 53 | acs-*.bib 54 | 55 | # amsthm 56 | *.thm 57 | 58 | # beamer 59 | *.nav 60 | *.pre 61 | *.snm 62 | *.vrb 63 | 64 | # changes 65 | *.soc 66 | 67 | # comment 68 | *.cut 69 | 70 | # cprotect 71 | *.cpt 72 | 73 | # elsarticle (documentclass of Elsevier journals) 74 | *.spl 75 | 76 | # endnotes 77 | *.ent 78 | 79 | # fixme 80 | *.lox 81 | 82 | # feynmf/feynmp 83 | *.mf 84 | *.mp 85 | *.t[1-9] 86 | *.t[1-9][0-9] 87 | *.tfm 88 | 89 | #(r)(e)ledmac/(r)(e)ledpar 90 | *.end 91 | *.?end 92 | *.[1-9] 93 | *.[1-9][0-9] 94 | *.[1-9][0-9][0-9] 95 | *.[1-9]R 96 | *.[1-9][0-9]R 97 | *.[1-9][0-9][0-9]R 98 | *.eledsec[1-9] 99 | *.eledsec[1-9]R 100 | *.eledsec[1-9][0-9] 101 | *.eledsec[1-9][0-9]R 102 | *.eledsec[1-9][0-9][0-9] 103 | *.eledsec[1-9][0-9][0-9]R 104 | 105 | # glossaries 106 | *.acn 107 | *.acr 108 | *.glg 109 | *.glo 110 | *.gls 111 | *.glsdefs 112 | 113 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 114 | # *.ist 115 | 116 | # gnuplottex 117 | *-gnuplottex-* 118 | 119 | # gregoriotex 120 | *.gaux 121 | *.gtex 122 | 123 | # htlatex 124 | *.4ct 125 | *.4tc 126 | *.idv 127 | *.lg 128 | *.trc 129 | *.xref 130 | 131 | # hyperref 132 | *.brf 133 | 134 | # knitr 135 | *-concordance.tex 136 | # TODO Comment the next line if you want to keep your tikz graphics files 137 | *.tikz 138 | *-tikzDictionary 139 | 140 | # listings 141 | *.lol 142 | 143 | # luatexja-ruby 144 | *.ltjruby 145 | 146 | # makeidx 147 | *.idx 148 | *.ilg 149 | *.ind 150 | 151 | # minitoc 152 | *.maf 153 | *.mlf 154 | *.mlt 155 | *.mtc[0-9]* 156 | *.slf[0-9]* 157 | *.slt[0-9]* 158 | *.stc[0-9]* 159 | 160 | # minted 161 | _minted* 162 | *.pyg 163 | 164 | # morewrites 165 | *.mw 166 | 167 | # nomencl 168 | *.nlg 169 | *.nlo 170 | *.nls 171 | 172 | # pax 173 | *.pax 174 | 175 | # pdfpcnotes 176 | *.pdfpc 177 | 178 | # sagetex 179 | *.sagetex.sage 180 | *.sagetex.py 181 | *.sagetex.scmd 182 | 183 | # scrwfile 184 | *.wrt 185 | 186 | # sympy 187 | *.sout 188 | *.sympy 189 | sympy-plots-for-*.tex/ 190 | 191 | # pdfcomment 192 | *.upa 193 | *.upb 194 | 195 | # pythontex 196 | *.pytxcode 197 | pythontex-files-*/ 198 | 199 | # tcolorbox 200 | *.listing 201 | 202 | # thmtools 203 | *.loe 204 | 205 | # TikZ & PGF 206 | *.dpth 207 | *.md5 208 | *.auxlock 209 | 210 | # todonotes 211 | *.tdo 212 | 213 | # vhistory 214 | *.hst 215 | *.ver 216 | 217 | # easy-todo 218 | *.lod 219 | 220 | # xcolor 221 | *.xcp 222 | 223 | # xmpincl 224 | *.xmpi 225 | 226 | # xindy 227 | *.xdy 228 | 229 | # xypic precompiled matrices 230 | *.xyc 231 | 232 | # endfloat 233 | *.ttt 234 | *.fff 235 | 236 | # Latexian 237 | TSWLatexianTemp* 238 | 239 | ## Editors: 240 | # WinEdt 241 | *.bak 242 | *.sav 243 | 244 | # Texpad 245 | .texpadtmp 246 | 247 | # LyX 248 | *.lyx~ 249 | 250 | # Kile 251 | *.backup 252 | 253 | # KBibTeX 254 | *~[0-9]* 255 | 256 | # auto folder when using emacs and auctex 257 | ./auto/* 258 | *.el 259 | 260 | # expex forward references with \gathertags 261 | *-tags.tex 262 | 263 | # standalone packages 264 | *.sta 265 | -------------------------------------------------------------------------------- /gitignores/VisualStudio.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | 33 | # Visual Studio 2015/2017 cache/options directory 34 | .vs/ 35 | # Uncomment if you have tasks that create the project's static files in wwwroot 36 | #wwwroot/ 37 | 38 | # Visual Studio 2017 auto generated files 39 | Generated\ Files/ 40 | 41 | # MSTest test Results 42 | [Tt]est[Rr]esult*/ 43 | [Bb]uild[Ll]og.* 44 | 45 | # NUnit 46 | *.VisualState.xml 47 | TestResult.xml 48 | nunit-*.xml 49 | 50 | # Build Results of an ATL Project 51 | [Dd]ebugPS/ 52 | [Rr]eleasePS/ 53 | dlldata.c 54 | 55 | # Benchmark Results 56 | BenchmarkDotNet.Artifacts/ 57 | 58 | # .NET Core 59 | project.lock.json 60 | project.fragment.lock.json 61 | artifacts/ 62 | 63 | # StyleCop 64 | StyleCopReport.xml 65 | 66 | # Files built by Visual Studio 67 | *_i.c 68 | *_p.c 69 | *_h.h 70 | *.ilk 71 | *.meta 72 | *.obj 73 | *.iobj 74 | *.pch 75 | *.pdb 76 | *.ipdb 77 | *.pgc 78 | *.pgd 79 | *.rsp 80 | *.sbr 81 | *.tlb 82 | *.tli 83 | *.tlh 84 | *.tmp 85 | *.tmp_proj 86 | *_wpftmp.csproj 87 | *.log 88 | *.vspscc 89 | *.vssscc 90 | .builds 91 | *.pidb 92 | *.svclog 93 | *.scc 94 | 95 | # Chutzpah Test files 96 | _Chutzpah* 97 | 98 | # Visual C++ cache files 99 | ipch/ 100 | *.aps 101 | *.ncb 102 | *.opendb 103 | *.opensdf 104 | *.sdf 105 | *.cachefile 106 | *.VC.db 107 | *.VC.VC.opendb 108 | 109 | # Visual Studio profiler 110 | *.psess 111 | *.vsp 112 | *.vspx 113 | *.sap 114 | 115 | # Visual Studio Trace Files 116 | *.e2e 117 | 118 | # TFS 2012 Local Workspace 119 | $tf/ 120 | 121 | # Guidance Automation Toolkit 122 | *.gpState 123 | 124 | # ReSharper is a .NET coding add-in 125 | _ReSharper*/ 126 | *.[Rr]e[Ss]harper 127 | *.DotSettings.user 128 | 129 | # JustCode is a .NET coding add-in 130 | .JustCode 131 | 132 | # TeamCity is a build add-in 133 | _TeamCity* 134 | 135 | # DotCover is a Code Coverage Tool 136 | *.dotCover 137 | 138 | # AxoCover is a Code Coverage Tool 139 | .axoCover/* 140 | !.axoCover/settings.json 141 | 142 | # Visual Studio code coverage results 143 | *.coverage 144 | *.coveragexml 145 | 146 | # NCrunch 147 | _NCrunch_* 148 | .*crunch*.local.xml 149 | nCrunchTemp_* 150 | 151 | # MightyMoose 152 | *.mm.* 153 | AutoTest.Net/ 154 | 155 | # Web workbench (sass) 156 | .sass-cache/ 157 | 158 | # Installshield output folder 159 | [Ee]xpress/ 160 | 161 | # DocProject is a documentation generator add-in 162 | DocProject/buildhelp/ 163 | DocProject/Help/*.HxT 164 | DocProject/Help/*.HxC 165 | DocProject/Help/*.hhc 166 | DocProject/Help/*.hhk 167 | DocProject/Help/*.hhp 168 | DocProject/Help/Html2 169 | DocProject/Help/html 170 | 171 | # Click-Once directory 172 | publish/ 173 | 174 | # Publish Web Output 175 | *.[Pp]ublish.xml 176 | *.azurePubxml 177 | # Note: Comment the next line if you want to checkin your web deploy settings, 178 | # but database connection strings (with potential passwords) will be unencrypted 179 | *.pubxml 180 | *.publishproj 181 | 182 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 183 | # checkin your Azure Web App publish settings, but sensitive information contained 184 | # in these scripts will be unencrypted 185 | PublishScripts/ 186 | 187 | # NuGet Packages 188 | *.nupkg 189 | # NuGet Symbol Packages 190 | *.snupkg 191 | # The packages folder can be ignored because of Package Restore 192 | **/[Pp]ackages/* 193 | # except build/, which is used as an MSBuild target. 194 | !**/[Pp]ackages/build/ 195 | # Uncomment if necessary however generally it will be regenerated when needed 196 | #!**/[Pp]ackages/repositories.config 197 | # NuGet v3's project.json files produces more ignorable files 198 | *.nuget.props 199 | *.nuget.targets 200 | 201 | # Microsoft Azure Build Output 202 | csx/ 203 | *.build.csdef 204 | 205 | # Microsoft Azure Emulator 206 | ecf/ 207 | rcf/ 208 | 209 | # Windows Store app package directories and files 210 | AppPackages/ 211 | BundleArtifacts/ 212 | Package.StoreAssociation.xml 213 | _pkginfo.txt 214 | *.appx 215 | *.appxbundle 216 | *.appxupload 217 | 218 | # Visual Studio cache files 219 | # files ending in .cache can be ignored 220 | *.[Cc]ache 221 | # but keep track of directories ending in .cache 222 | !?*.[Cc]ache/ 223 | 224 | # Others 225 | ClientBin/ 226 | ~$* 227 | *~ 228 | *.dbmdl 229 | *.dbproj.schemaview 230 | *.jfm 231 | *.pfx 232 | *.publishsettings 233 | orleans.codegen.cs 234 | 235 | # Including strong name files can present a security risk 236 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 237 | #*.snk 238 | 239 | # Since there are multiple workflows, uncomment next line to ignore bower_components 240 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 241 | #bower_components/ 242 | 243 | # RIA/Silverlight projects 244 | Generated_Code/ 245 | 246 | # Backup & report files from converting an old project file 247 | # to a newer Visual Studio version. Backup files are not needed, 248 | # because we have git ;-) 249 | _UpgradeReport_Files/ 250 | Backup*/ 251 | UpgradeLog*.XML 252 | UpgradeLog*.htm 253 | ServiceFabricBackup/ 254 | *.rptproj.bak 255 | 256 | # SQL Server files 257 | *.mdf 258 | *.ldf 259 | *.ndf 260 | 261 | # Business Intelligence projects 262 | *.rdl.data 263 | *.bim.layout 264 | *.bim_*.settings 265 | *.rptproj.rsuser 266 | *- [Bb]ackup.rdl 267 | *- [Bb]ackup ([0-9]).rdl 268 | *- [Bb]ackup ([0-9][0-9]).rdl 269 | 270 | # Microsoft Fakes 271 | FakesAssemblies/ 272 | 273 | # GhostDoc plugin setting file 274 | *.GhostDoc.xml 275 | 276 | # Node.js Tools for Visual Studio 277 | .ntvs_analysis.dat 278 | node_modules/ 279 | 280 | # Visual Studio 6 build log 281 | *.plg 282 | 283 | # Visual Studio 6 workspace options file 284 | *.opt 285 | 286 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 287 | *.vbw 288 | 289 | # Visual Studio LightSwitch build output 290 | **/*.HTMLClient/GeneratedArtifacts 291 | **/*.DesktopClient/GeneratedArtifacts 292 | **/*.DesktopClient/ModelManifest.xml 293 | **/*.Server/GeneratedArtifacts 294 | **/*.Server/ModelManifest.xml 295 | _Pvt_Extensions 296 | 297 | # Paket dependency manager 298 | .paket/paket.exe 299 | paket-files/ 300 | 301 | # FAKE - F# Make 302 | .fake/ 303 | 304 | # CodeRush personal settings 305 | .cr/personal 306 | 307 | # Python Tools for Visual Studio (PTVS) 308 | __pycache__/ 309 | *.pyc 310 | 311 | # Cake - Uncomment if you are using it 312 | # tools/** 313 | # !tools/packages.config 314 | 315 | # Tabs Studio 316 | *.tss 317 | 318 | # Telerik's JustMock configuration file 319 | *.jmconfig 320 | 321 | # BizTalk build output 322 | *.btp.cs 323 | *.btm.cs 324 | *.odx.cs 325 | *.xsd.cs 326 | 327 | # OpenCover UI analysis results 328 | OpenCover/ 329 | 330 | # Azure Stream Analytics local run output 331 | ASALocalRun/ 332 | 333 | # MSBuild Binary and Structured Log 334 | *.binlog 335 | 336 | # NVidia Nsight GPU debugger configuration file 337 | *.nvuser 338 | 339 | # MFractors (Xamarin productivity tool) working folder 340 | .mfractor/ 341 | 342 | # Local History for Visual Studio 343 | .localhistory/ 344 | 345 | # BeatPulse healthcheck temp database 346 | healthchecksdb 347 | 348 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 349 | MigrationBackup/ 350 | -------------------------------------------------------------------------------- /gitignores/Joomla.gitignore: -------------------------------------------------------------------------------- 1 | /.htaccess 2 | /administrator/cache/* 3 | /administrator/components/com_admin/* 4 | /administrator/components/com_ajax/* 5 | /administrator/components/com_tags/* 6 | /administrator/components/com_banners/* 7 | /administrator/components/com_cache/* 8 | /administrator/components/com_postinstall/* 9 | /administrator/components/com_joomlaupdate/* 10 | /administrator/components/com_contenthistory/* 11 | /administrator/components/com_categories/* 12 | /administrator/components/com_checkin/* 13 | /administrator/components/com_config/* 14 | /administrator/components/com_contact/* 15 | /administrator/components/com_content/* 16 | /administrator/components/com_cpanel/* 17 | /administrator/components/com_finder/* 18 | /administrator/components/com_installer/* 19 | /administrator/components/com_languages/* 20 | /administrator/components/com_login/* 21 | /administrator/components/com_media/* 22 | /administrator/components/com_menus/* 23 | /administrator/components/com_messages/* 24 | /administrator/components/com_modules/* 25 | /administrator/components/com_newsfeeds/* 26 | /administrator/components/com_plugins/* 27 | /administrator/components/com_redirect/* 28 | /administrator/components/com_search/* 29 | /administrator/components/com_templates/* 30 | /administrator/components/com_users/* 31 | /administrator/help/* 32 | /administrator/includes/* 33 | /administrator/language/en-GB/en-GB.com_ajax.ini 34 | /administrator/language/en-GB/en-GB.com_ajax.sys.ini 35 | /administrator/language/en-GB/en-GB.com_contenthistory.ini 36 | /administrator/language/en-GB/en-GB.com_contenthistory.sys.ini 37 | /administrator/language/en-GB/en-GB.com_joomlaupdate.ini 38 | /administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini 39 | /administrator/language/en-GB/en-GB.com_postinstall.ini 40 | /administrator/language/en-GB/en-GB.com_postinstall.sys.ini 41 | /administrator/language/en-GB/en-GB.com_tags.ini 42 | /administrator/language/en-GB/en-GB.com_tags.sys.ini 43 | /administrator/language/en-GB/en-GB.mod_stats_admin.ini 44 | /administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini 45 | /administrator/language/en-GB/en-GB.plg_authentication_cookie.ini 46 | /administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini 47 | /administrator/language/en-GB/en-GB.plg_content_contact.ini 48 | /administrator/language/en-GB/en-GB.plg_content_contact.sys.ini 49 | /administrator/language/en-GB/en-GB.plg_content_finder.ini 50 | /administrator/language/en-GB/en-GB.plg_content_finder.sys.ini 51 | /administrator/language/en-GB/en-GB.plg_editors-xtd_module* 52 | /administrator/language/en-GB/en-GB.plg_finder_categories.ini 53 | /administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini 54 | /administrator/language/en-GB/en-GB.plg_finder_contacts.ini 55 | /administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini 56 | /administrator/language/en-GB/en-GB.plg_finder_content.ini 57 | /administrator/language/en-GB/en-GB.plg_finder_content.sys.ini 58 | /administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini 59 | /administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini 60 | /administrator/language/en-GB/en-GB.plg_finder_tags.ini 61 | /administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini 62 | /administrator/language/en-GB/en-GB.plg_finder_weblinks.ini 63 | /administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini 64 | /administrator/language/en-GB/en-GB.plg_installer_folderinstaller* 65 | /administrator/language/en-GB/en-GB.plg_installer_packageinstaller* 66 | /administrator/language/en-GB/en-GB.plg_installer_packageinstaller 67 | /administrator/language/en-GB/en-GB.plg_installer_urlinstaller* 68 | /administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini 69 | /administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini 70 | /administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini 71 | /administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini 72 | /administrator/language/en-GB/en-GB.plg_search_tags.ini 73 | /administrator/language/en-GB/en-GB.plg_search_tags.sys.ini 74 | /administrator/language/en-GB/en-GB.plg_system_languagecode.ini 75 | /administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini 76 | /administrator/language/en-GB/en-GB.plg_system_stats* 77 | /administrator/language/en-GB/en-GB.plg_system_updatenotification* 78 | /administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini 79 | /administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini 80 | /administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini 81 | /administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini 82 | /administrator/language/en-GB/en-GB.tpl_isis.ini 83 | /administrator/language/en-GB/en-GB.tpl_isis.sys.ini 84 | /administrator/language/en-GB/install.xml 85 | /administrator/language/en-GB/en-GB.com_admin.ini 86 | /administrator/language/en-GB/en-GB.com_admin.sys.ini 87 | /administrator/language/en-GB/en-GB.com_banners.ini 88 | /administrator/language/en-GB/en-GB.com_banners.sys.ini 89 | /administrator/language/en-GB/en-GB.com_cache.ini 90 | /administrator/language/en-GB/en-GB.com_cache.sys.ini 91 | /administrator/language/en-GB/en-GB.com_categories.ini 92 | /administrator/language/en-GB/en-GB.com_categories.sys.ini 93 | /administrator/language/en-GB/en-GB.com_checkin.ini 94 | /administrator/language/en-GB/en-GB.com_checkin.sys.ini 95 | /administrator/language/en-GB/en-GB.com_config.ini 96 | /administrator/language/en-GB/en-GB.com_config.sys.ini 97 | /administrator/language/en-GB/en-GB.com_contact.ini 98 | /administrator/language/en-GB/en-GB.com_contact.sys.ini 99 | /administrator/language/en-GB/en-GB.com_content.ini 100 | /administrator/language/en-GB/en-GB.com_content.sys.ini 101 | /administrator/language/en-GB/en-GB.com_cpanel.ini 102 | /administrator/language/en-GB/en-GB.com_cpanel.sys.ini 103 | /administrator/language/en-GB/en-GB.com_finder.ini 104 | /administrator/language/en-GB/en-GB.com_finder.sys.ini 105 | /administrator/language/en-GB/en-GB.com_installer.ini 106 | /administrator/language/en-GB/en-GB.com_installer.sys.ini 107 | /administrator/language/en-GB/en-GB.com_languages.ini 108 | /administrator/language/en-GB/en-GB.com_languages.sys.ini 109 | /administrator/language/en-GB/en-GB.com_login.ini 110 | /administrator/language/en-GB/en-GB.com_login.sys.ini 111 | /administrator/language/en-GB/en-GB.com_mailto.sys.ini 112 | /administrator/language/en-GB/en-GB.com_media.ini 113 | /administrator/language/en-GB/en-GB.com_media.sys.ini 114 | /administrator/language/en-GB/en-GB.com_menus.ini 115 | /administrator/language/en-GB/en-GB.com_menus.sys.ini 116 | /administrator/language/en-GB/en-GB.com_messages.ini 117 | /administrator/language/en-GB/en-GB.com_messages.sys.ini 118 | /administrator/language/en-GB/en-GB.com_modules.ini 119 | /administrator/language/en-GB/en-GB.com_modules.sys.ini 120 | /administrator/language/en-GB/en-GB.com_newsfeeds.ini 121 | /administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini 122 | /administrator/language/en-GB/en-GB.com_plugins.ini 123 | /administrator/language/en-GB/en-GB.com_plugins.sys.ini 124 | /administrator/language/en-GB/en-GB.com_redirect.ini 125 | /administrator/language/en-GB/en-GB.com_redirect.sys.ini 126 | /administrator/language/en-GB/en-GB.com_search.ini 127 | /administrator/language/en-GB/en-GB.com_search.sys.ini 128 | /administrator/language/en-GB/en-GB.com_templates.ini 129 | /administrator/language/en-GB/en-GB.com_templates.sys.ini 130 | /administrator/language/en-GB/en-GB.com_users.ini 131 | /administrator/language/en-GB/en-GB.com_users.sys.ini 132 | /administrator/language/en-GB/en-GB.com_weblinks.ini 133 | /administrator/language/en-GB/en-GB.com_weblinks.sys.ini 134 | /administrator/language/en-GB/en-GB.com_wrapper.ini 135 | /administrator/language/en-GB/en-GB.com_wrapper.sys.ini 136 | /administrator/language/en-GB/en-GB.ini 137 | /administrator/language/en-GB/en-GB.lib_joomla.ini 138 | /administrator/language/en-GB/en-GB.localise.php 139 | /administrator/language/en-GB/en-GB.mod_custom.ini 140 | /administrator/language/en-GB/en-GB.mod_custom.sys.ini 141 | /administrator/language/en-GB/en-GB.mod_feed.ini 142 | /administrator/language/en-GB/en-GB.mod_feed.sys.ini 143 | /administrator/language/en-GB/en-GB.mod_latest.ini 144 | /administrator/language/en-GB/en-GB.mod_latest.sys.ini 145 | /administrator/language/en-GB/en-GB.mod_logged.ini 146 | /administrator/language/en-GB/en-GB.mod_logged.sys.ini 147 | /administrator/language/en-GB/en-GB.mod_login.ini 148 | /administrator/language/en-GB/en-GB.mod_login.sys.ini 149 | /administrator/language/en-GB/en-GB.mod_menu.ini 150 | /administrator/language/en-GB/en-GB.mod_menu.sys.ini 151 | /administrator/language/en-GB/en-GB.mod_multilangstatus.ini 152 | /administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini 153 | /administrator/language/en-GB/en-GB.mod_online.ini 154 | /administrator/language/en-GB/en-GB.mod_online.sys.ini 155 | /administrator/language/en-GB/en-GB.mod_popular.ini 156 | /administrator/language/en-GB/en-GB.mod_popular.sys.ini 157 | /administrator/language/en-GB/en-GB.mod_quickicon.ini 158 | /administrator/language/en-GB/en-GB.mod_quickicon.sys.ini 159 | /administrator/language/en-GB/en-GB.mod_status.ini 160 | /administrator/language/en-GB/en-GB.mod_status.sys.ini 161 | /administrator/language/en-GB/en-GB.mod_submenu.ini 162 | /administrator/language/en-GB/en-GB.mod_submenu.sys.ini 163 | /administrator/language/en-GB/en-GB.mod_title.ini 164 | /administrator/language/en-GB/en-GB.mod_title.sys.ini 165 | /administrator/language/en-GB/en-GB.mod_toolbar.ini 166 | /administrator/language/en-GB/en-GB.mod_toolbar.sys.ini 167 | /administrator/language/en-GB/en-GB.mod_unread.ini 168 | /administrator/language/en-GB/en-GB.mod_unread.sys.ini 169 | /administrator/language/en-GB/en-GB.mod_version.ini 170 | /administrator/language/en-GB/en-GB.mod_version.sys.ini 171 | /administrator/language/en-GB/en-GB.plg_authentication_example.ini 172 | /administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini 173 | /administrator/language/en-GB/en-GB.plg_authentication_gmail.ini 174 | /administrator/language/en-GB/en-GB.plg_authentication_gmail.sys.ini 175 | /administrator/language/en-GB/en-GB.plg_authentication_joomla.ini 176 | /administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini 177 | /administrator/language/en-GB/en-GB.plg_authentication_ldap.ini 178 | /administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini 179 | /administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini 180 | /administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini 181 | /administrator/language/en-GB/en-GB.plg_content_emailcloak.ini 182 | /administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini 183 | /administrator/language/en-GB/en-GB.plg_content_geshi.ini 184 | /administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini 185 | /administrator/language/en-GB/en-GB.plg_content_joomla.ini 186 | /administrator/language/en-GB/en-GB.plg_content_joomla.sys.ini 187 | /administrator/language/en-GB/en-GB.plg_content_loadmodule.ini 188 | /administrator/language/en-GB/en-GB.plg_content_loadmodule.sys.ini 189 | /administrator/language/en-GB/en-GB.plg_content_pagebreak.ini 190 | /administrator/language/en-GB/en-GB.plg_content_pagebreak.sys.ini 191 | /administrator/language/en-GB/en-GB.plg_content_pagenavigation.ini 192 | /administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini 193 | /administrator/language/en-GB/en-GB.plg_content_vote.ini 194 | /administrator/language/en-GB/en-GB.plg_content_vote.sys.ini 195 | /administrator/language/en-GB/en-GB.plg_editors_codemirror.ini 196 | /administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini 197 | /administrator/language/en-GB/en-GB.plg_editors_none.ini 198 | /administrator/language/en-GB/en-GB.plg_editors_none.sys.ini 199 | /administrator/language/en-GB/en-GB.plg_editors_tinymce.ini 200 | /administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini 201 | /administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini 202 | /administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini 203 | /administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini 204 | /administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini 205 | /administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini 206 | /administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini 207 | /administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini 208 | /administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini 209 | /administrator/language/en-GB/en-GB.plg_extension_joomla.ini 210 | /administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini 211 | /administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini 212 | /administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini 213 | /administrator/language/en-GB/en-GB.plg_search_categories.ini 214 | /administrator/language/en-GB/en-GB.plg_search_categories.sys.ini 215 | /administrator/language/en-GB/en-GB.plg_search_contacts.ini 216 | /administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini 217 | /administrator/language/en-GB/en-GB.plg_search_content.ini 218 | /administrator/language/en-GB/en-GB.plg_search_content.sys.ini 219 | /administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini 220 | /administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini 221 | /administrator/language/en-GB/en-GB.plg_search_weblinks.ini 222 | /administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini 223 | /administrator/language/en-GB/en-GB.plg_system_cache.ini 224 | /administrator/language/en-GB/en-GB.plg_system_cache.sys.ini 225 | /administrator/language/en-GB/en-GB.plg_system_debug.ini 226 | /administrator/language/en-GB/en-GB.plg_system_debug.sys.ini 227 | /administrator/language/en-GB/en-GB.plg_system_highlight.ini 228 | /administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini 229 | /administrator/language/en-GB/en-GB.plg_system_languagefilter.ini 230 | /administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini 231 | /administrator/language/en-GB/en-GB.plg_system_log.ini 232 | /administrator/language/en-GB/en-GB.plg_system_logout.ini 233 | /administrator/language/en-GB/en-GB.plg_system_logout.sys.ini 234 | /administrator/language/en-GB/en-GB.plg_system_log.sys.ini 235 | /administrator/language/en-GB/en-GB.plg_system_p3p.ini 236 | /administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini 237 | /administrator/language/en-GB/en-GB.plg_system_redirect.ini 238 | /administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini 239 | /administrator/language/en-GB/en-GB.plg_system_remember.ini 240 | /administrator/language/en-GB/en-GB.plg_system_remember.sys.ini 241 | /administrator/language/en-GB/en-GB.plg_system_sef.ini 242 | /administrator/language/en-GB/en-GB.plg_system_sef.sys.ini 243 | /administrator/language/en-GB/en-GB.plg_user_contactcreator.ini 244 | /administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini 245 | /administrator/language/en-GB/en-GB.plg_user_joomla.ini 246 | /administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini 247 | /administrator/language/en-GB/en-GB.plg_user_profile.ini 248 | /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini 249 | /administrator/language/en-GB/en-GB.tpl_hathor.ini 250 | /administrator/language/en-GB/en-GB.tpl_hathor.sys.ini 251 | /administrator/language/en-GB/en-GB.xml 252 | /administrator/language/overrides/* 253 | /administrator/logs/* 254 | /administrator/manifests/* 255 | /administrator/modules/mod_custom/* 256 | /administrator/modules/mod_feed/* 257 | /administrator/modules/mod_latest/* 258 | /administrator/modules/mod_logged/* 259 | /administrator/modules/mod_login/* 260 | /administrator/modules/mod_menu/* 261 | /administrator/modules/mod_multilangstatus/* 262 | /administrator/modules/mod_online/* 263 | /administrator/modules/mod_popular/* 264 | /administrator/modules/mod_quickicon/* 265 | /administrator/modules/mod_status/* 266 | /administrator/modules/mod_submenu/* 267 | /administrator/modules/mod_title/* 268 | /administrator/modules/mod_toolbar/* 269 | /administrator/modules/mod_unread/* 270 | /administrator/modules/mod_version/* 271 | /administrator/modules/mod_stats_admin/* 272 | /administrator/templates/isis/* 273 | /administrator/templates/hathor/* 274 | /administrator/templates/system/* 275 | /administrator/index.php 276 | /cache/* 277 | /bin/* 278 | /cli/* 279 | /components/com_banners/* 280 | /components/com_ajax/* 281 | /components/com_config/* 282 | /components/com_contenthistory/* 283 | /components/com_tags/* 284 | /components/com_contact/* 285 | /components/com_content/* 286 | /components/com_finder/* 287 | /components/com_mailto/* 288 | /components/com_media/* 289 | /components/com_modules/* 290 | /components/com_newsfeeds/* 291 | /components/com_search/* 292 | /components/com_users/* 293 | /components/com_wrapper/* 294 | /components/index.html 295 | /images/banners/* 296 | /images/headers/* 297 | /images/sampledata/* 298 | /images/joomla* 299 | /images/index.html 300 | /images/powered_by.png 301 | /includes/* 302 | /installation/* 303 | /language/en-GB/en-GB.com_ajax.ini 304 | /language/en-GB/en-GB.com_config.ini 305 | /language/en-GB/en-GB.com_contact.ini 306 | /language/en-GB/en-GB.com_finder.ini 307 | /language/en-GB/en-GB.com_tags.ini 308 | /language/en-GB/en-GB.finder_cli.ini 309 | /language/en-GB/en-GB.lib_fof.sys.ini 310 | /language/en-GB/en-GB.lib_fof.ini 311 | /language/en-GB/en-GB.com_content.ini 312 | /language/en-GB/en-GB.lib_idna_convert.sys.ini 313 | /language/en-GB/en-GB.com_mailto.ini 314 | /language/en-GB/en-GB.lib_joomla.sys.ini 315 | /language/en-GB/en-GB.lib_phpass.sys.ini 316 | /language/en-GB/en-GB.lib_phpmailer.sys.ini 317 | /language/en-GB/en-GB.lib_phputf8.sys.ini 318 | /language/en-GB/en-GB.lib_simplepie.sys.ini 319 | /language/en-GB/en-GB.com_media.ini 320 | /language/en-GB/en-GB.mod_finder.ini 321 | /language/en-GB/en-GB.com_messages.ini 322 | /language/en-GB/en-GB.mod_tags_popular.ini 323 | /language/en-GB/en-GB.mod_tags_popular.sys.ini 324 | /language/en-GB/en-GB.mod_tags_similar.ini 325 | /language/en-GB/en-GB.mod_tags_similar.sys.ini 326 | /language/en-GB/en-GB.mod_finder.sys.ini 327 | /language/en-GB/en-GB.tpl_beez3.ini 328 | /language/en-GB/en-GB.tpl_beez3.sys.ini 329 | /language/en-GB/en-GB.com_newsfeeds.ini 330 | /language/en-GB/en-GB.tpl_protostar.ini 331 | /language/en-GB/en-GB.tpl_protostar.sys.ini 332 | /language/en-GB/en-GB.com_search.ini 333 | /language/en-GB/en-GB.com_users.ini 334 | /language/en-GB/en-GB.com_weblinks.ini 335 | /language/en-GB/en-GB.com_wrapper.ini 336 | /language/en-GB/en-GB.files_joomla.sys.ini 337 | /language/en-GB/en-GB.ini 338 | /language/en-GB/en-GB.lib_joomla.ini 339 | /language/en-GB/en-GB.localise.php 340 | /language/en-GB/en-GB.mod_articles_archive.ini 341 | /language/en-GB/en-GB.mod_articles_archive.sys.ini 342 | /language/en-GB/en-GB.mod_articles_categories.ini 343 | /language/en-GB/en-GB.mod_articles_categories.sys.ini 344 | /language/en-GB/en-GB.mod_articles_category.ini 345 | /language/en-GB/en-GB.mod_articles_category.sys.ini 346 | /language/en-GB/en-GB.mod_articles_latest.ini 347 | /language/en-GB/en-GB.mod_articles_latest.sys.ini 348 | /language/en-GB/en-GB.mod_articles_news.ini 349 | /language/en-GB/en-GB.mod_articles_news.sys.ini 350 | /language/en-GB/en-GB.mod_articles_popular.ini 351 | /language/en-GB/en-GB.mod_articles_popular.sys.ini 352 | /language/en-GB/en-GB.mod_banners.ini 353 | /language/en-GB/en-GB.mod_banners.sys.ini 354 | /language/en-GB/en-GB.mod_breadcrumbs.ini 355 | /language/en-GB/en-GB.mod_breadcrumbs.sys.ini 356 | /language/en-GB/en-GB.mod_custom.ini 357 | /language/en-GB/en-GB.mod_custom.sys.ini 358 | /language/en-GB/en-GB.mod_feed.ini 359 | /language/en-GB/en-GB.mod_feed.sys.ini 360 | /language/en-GB/en-GB.mod_footer.ini 361 | /language/en-GB/en-GB.mod_footer.sys.ini 362 | /language/en-GB/en-GB.mod_languages.ini 363 | /language/en-GB/en-GB.mod_languages.sys.ini 364 | /language/en-GB/en-GB.mod_login.ini 365 | /language/en-GB/en-GB.mod_login.sys.ini 366 | /language/en-GB/en-GB.mod_menu.ini 367 | /language/en-GB/en-GB.mod_menu.sys.ini 368 | /language/en-GB/en-GB.mod_random_image.ini 369 | /language/en-GB/en-GB.mod_random_image.sys.ini 370 | /language/en-GB/en-GB.mod_related_items.ini 371 | /language/en-GB/en-GB.mod_related_items.sys.ini 372 | /language/en-GB/en-GB.mod_search.ini 373 | /language/en-GB/en-GB.mod_search.sys.ini 374 | /language/en-GB/en-GB.mod_stats.ini 375 | /language/en-GB/en-GB.mod_stats.sys.ini 376 | /language/en-GB/en-GB.mod_syndicate.ini 377 | /language/en-GB/en-GB.mod_syndicate.sys.ini 378 | /language/en-GB/en-GB.mod_users_latest.ini 379 | /language/en-GB/en-GB.mod_users_latest.sys.ini 380 | /language/en-GB/en-GB.mod_weblinks.ini 381 | /language/en-GB/en-GB.mod_weblinks.sys.ini 382 | /language/en-GB/en-GB.mod_whosonline.ini 383 | /language/en-GB/en-GB.mod_whosonline.sys.ini 384 | /language/en-GB/en-GB.mod_wrapper.ini 385 | /language/en-GB/en-GB.mod_wrapper.sys.ini 386 | /language/en-GB/en-GB.tpl_atomic.ini 387 | /language/en-GB/en-GB.tpl_atomic.sys.ini 388 | /language/en-GB/en-GB.tpl_beez_20.ini 389 | /language/en-GB/en-GB.tpl_beez_20.sys.ini 390 | /language/en-GB/en-GB.tpl_beez5.ini 391 | /language/en-GB/en-GB.tpl_beez5.sys.ini 392 | /language/en-GB/en-GB.xml 393 | /language/en-GB/install.xml 394 | /language/overrides/* 395 | /language/index.html 396 | /layouts/joomla/* 397 | /layouts/libraries/* 398 | /layouts/plugins/* 399 | /layouts/index.html 400 | /libraries/cms.php 401 | /libraries/cms/* 402 | /libraries/fof/* 403 | /libraries/idna_convert/* 404 | /libraries/joomla/* 405 | /libraries/legacy/* 406 | /libraries/php-encryption/* 407 | /libraries/phpass/* 408 | /libraries/phpmailer/* 409 | /libraries/phputf8/* 410 | /libraries/simplepie/* 411 | /libraries/vendor/* 412 | /libraries/classmap.php 413 | /libraries/import.legacy.php 414 | /libraries/index.html 415 | /libraries/import.php 416 | /libraries/loader.php 417 | /media/cms/* 418 | /media/com_contenthistory/* 419 | /media/com_finder/* 420 | /media/com_joomlaupdate/* 421 | /media/com_wrapper/* 422 | /media/contacts/* 423 | /media/editors/* 424 | /media/jui/* 425 | /media/mailto/* 426 | /media/media/* 427 | /media/mod_languages/* 428 | /media/overrider/* 429 | /media/plg_captcha_recaptcha/* 430 | /media/plg_quickicon_extensionupdate/* 431 | /media/plg_quickicon_joomlaupdate/* 432 | /media/plg_system_highlight/* 433 | /media/plg_system_stats/* 434 | /media/system/* 435 | /media/index.html 436 | /modules/mod_articles_archive/* 437 | /modules/mod_articles_categories/* 438 | /modules/mod_articles_category/* 439 | /modules/mod_articles_latest/* 440 | /modules/mod_articles_news/* 441 | /modules/mod_articles_popular/* 442 | /modules/mod_banners/* 443 | /modules/mod_breadcrumbs/* 444 | /modules/mod_custom/* 445 | /modules/mod_feed/* 446 | /modules/mod_finder/* 447 | /modules/mod_footer/* 448 | /modules/mod_languages/* 449 | /modules/mod_login/* 450 | /modules/mod_menu/* 451 | /modules/mod_random_image/* 452 | /modules/mod_related_items/* 453 | /modules/mod_search/* 454 | /modules/mod_stats/* 455 | /modules/mod_syndicate/* 456 | /modules/mod_tags_popular/* 457 | /modules/mod_tags_similar/* 458 | /modules/mod_users_latest/* 459 | /modules/mod_whosonline/* 460 | /modules/mod_wrapper/* 461 | /modules/index.html 462 | /plugins/authentication/example/* 463 | /plugins/authentication/gmail/* 464 | /plugins/authentication/joomla/* 465 | /plugins/authentication/ldap/* 466 | /plugins/authentication/cookie/* 467 | /plugins/captcha/recaptcha/* 468 | /plugins/content/emailcloak/* 469 | /plugins/content/example/* 470 | /plugins/content/finder/* 471 | /plugins/content/geshi/* 472 | /plugins/content/joomla/* 473 | /plugins/content/loadmodule/* 474 | /plugins/content/pagebreak/* 475 | /plugins/content/pagenavigation/* 476 | /plugins/content/vote/* 477 | /plugins/content/contact/* 478 | /plugins/editors/codemirror/* 479 | /plugins/editors/none/* 480 | /plugins/editors/tinymce/* 481 | /plugins/editors-xtd/module/* 482 | /plugins/editors-xtd/article/* 483 | /plugins/editors-xtd/image/* 484 | /plugins/editors-xtd/pagebreak/* 485 | /plugins/editors-xtd/readmore/* 486 | /plugins/extension/example/* 487 | /plugins/extension/joomla/* 488 | /plugins/finder/categories/* 489 | /plugins/finder/contacts/* 490 | /plugins/finder/content/* 491 | /plugins/finder/newsfeeds/* 492 | /plugins/finder/tags/* 493 | /plugins/installer/* 494 | /plugins/quickicon/extensionupdate/* 495 | /plugins/quickicon/joomlaupdate/* 496 | /plugins/quickicon/index.html 497 | /plugins/search/categories/* 498 | /plugins/search/contacts/* 499 | /plugins/search/content/* 500 | /plugins/search/newsfeeds/* 501 | /plugins/search/weblinks/* 502 | /plugins/search/tags/* 503 | /plugins/search/index.html 504 | /plugins/system/cache/* 505 | /plugins/system/debug/* 506 | /plugins/system/highlight/* 507 | /plugins/system/languagecode/* 508 | /plugins/system/languagefilter/* 509 | /plugins/system/log/* 510 | /plugins/system/logout/* 511 | /plugins/system/p3p/* 512 | /plugins/system/redirect/* 513 | /plugins/system/remember/* 514 | /plugins/system/sef/* 515 | /plugins/system/stats/* 516 | /plugins/system/updatenotification/* 517 | /plugins/system/index.html 518 | /plugins/twofactorauth/* 519 | /plugins/user/contactcreator/* 520 | /plugins/user/example/* 521 | /plugins/user/joomla/* 522 | /plugins/user/profile/* 523 | /plugins/user/index.html 524 | /plugins/index.html 525 | /templates/beez3/* 526 | /templates/protostar/* 527 | /templates/system/* 528 | /templates/index.html 529 | /tmp/* 530 | /configuration.php 531 | /index.php 532 | /joomla.xml 533 | /*.txt 534 | /robots.txt.dist 535 | --------------------------------------------------------------------------------