Merge branch 'master' into codeigniter3update

This commit is contained in:
William Marquardt 2017-02-02 09:36:10 -02:00 committed by GitHub
commit 2813344310
63 changed files with 594 additions and 263 deletions

View File

@ -35,6 +35,20 @@ captures/
# Intellij # Intellij
*.iml *.iml
.idea/workspace.xml .idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/libraries
# Keystore files # Keystore files
*.jks *.jks
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
# Google Services (e.g. APIs or Firebase)
google-services.json
#Freeline
freeline.py
freeline/
freeline_project_description.json

View File

@ -1,6 +1,11 @@
# http://www.gnu.org/software/automake # http://www.gnu.org/software/automake
Makefile.in Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap
# http://www.gnu.org/software/autoconf # http://www.gnu.org/software/autoconf
@ -9,10 +14,20 @@ Makefile.in
/autoscan-*.log /autoscan-*.log
/aclocal.m4 /aclocal.m4
/compile /compile
/config.guess
/config.h.in /config.h.in
/config.sub
/configure /configure
/configure.scan /configure.scan
/depcomp /depcomp
/install-sh /install-sh
/missing /missing
/stamp-h1 /stamp-h1
# https://www.gnu.org/software/libtool/
/ltmain.sh
# http://www.gnu.org/software/texinfo
/texinfo.tex

View File

@ -1,3 +1,6 @@
# Prerequisites
*.d
# Compiled Object files # Compiled Object files
*.slo *.slo
*.lo *.lo

View File

@ -1,9 +1,17 @@
# Prerequisites
*.d
# Object files # Object files
*.o *.o
*.ko *.ko
*.obj *.obj
*.elf *.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers # Precompiled Headers
*.gch *.gch
*.pch *.pch
@ -31,3 +39,13 @@
# Debug files # Debug files
*.dSYM/ *.dSYM/
*.su *.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
modules.order
Module.symvers
Mkfile.old
dkms.conf

View File

@ -1,7 +1,9 @@
CMakeCache.txt CMakeCache.txt
CMakeFiles CMakeFiles
CMakeScripts CMakeScripts
Testing
Makefile Makefile
cmake_install.cmake cmake_install.cmake
install_manifest.txt install_manifest.txt
compile_commands.json
CTestTestfile.cmake CTestTestfile.cmake

View File

@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines.
In general, the more you can do to help us understand the change youre making, In general, the more you can do to help us understand the change youre making,
the more likely well be to accept your contribution quickly. the more likely well be to accept your contribution quickly.
If a template is mostly a list of files installed by a particular version of
some software (e.g. a PHP framework) then it's brittle and probably no more
helpful than a simple `ls`. If it's not possible to curate a small set of
useful rules, then the template might not be a good fit for this collection.
Please also understand that we cant list every tool that ever existed. Please also understand that we cant list every tool that ever existed.
Our aim is to curate a collection of the *most common and helpful* templates, Our aim is to curate a collection of the *most common and helpful* templates,
not to make sure we cover every project possible. If we choose not to not to make sure we cover every project possible. If we choose not to

View File

@ -5,6 +5,11 @@
!*/cache/index.html !*/cache/index.html
!*/cache/.htaccess !*/cache/.htaccess
user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*
#codeigniter 3 #codeigniter 3
application/logs/* application/logs/*
!application/logs/index.html !application/logs/index.html

View File

@ -1,3 +1,17 @@
*.FASL *.FASL
*.fasl *.fasl
*.lisp-temp *.lisp-temp
*.dfsl
*.pfsl
*.d64fsl
*.p64fsl
*.lx64fsl
*.lx32fsl
*.dx64fsl
*.dx32fsl
*.fx64fsl
*.fx32fsl
*.sx64fsl
*.sx32fsl
*.wx64fsl
*.wx32fsl

View File

@ -1,3 +1,30 @@
*.vo .*.aux
*.a
*.cma
*.cmi
*.cmo
*.cmx
*.cmxa
*.cmxs
*.glob *.glob
*.ml.d
*.ml4.d
*.mli.d
*.mllib.d
*.mlpack.d
*.native
*.o
*.v.d *.v.d
*.vio
*.vo
.coq-native/
.csdp.cache
.lia.cache
.nia.cache
.nlia.cache
.nra.cache
csdp.cache
lia.cache
nia.cache
nlia.cache
nra.cache

View File

@ -18,3 +18,7 @@
.dub .dub
docs.json docs.json
__dummy.html __dummy.html
docs/
# Code coverage
*.lst

View File

@ -1,13 +1,19 @@
# See https://www.dartlang.org/tools/private-files.html # See https://www.dartlang.org/tools/private-files.html
# Files and directories created by pub # Files and directories created by pub
.buildlog
# SDK 1.20 and later (no longer creates packages directories)
.packages .packages
.project
.pub/ .pub/
build/ build/
# Older SDK versions
# (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20)
.project
.buildlog
**/packages/ **/packages/
# Files created by dart2js # Files created by dart2js
# (Most Dart developers will use pub build to compile Dart, use/modify these # (Most Dart developers will use pub build to compile Dart, use/modify these
# rules if you intend to use dart2js directly # rules if you intend to use dart2js directly

View File

@ -3,3 +3,9 @@
# Packaging # Packaging
.cask .cask
# Backup files
*~
# Undo-tree save-files
*.~undo-tree

View File

@ -3,3 +3,4 @@
/deps /deps
erl_crash.dump erl_crash.dump
*.ez *.ez
*.beam

View File

@ -1,4 +1,4 @@
# elm-package generated files # elm-package generated files
elm-stuff/ elm-stuff
# elm-repl generated files # elm-repl generated files
repl-temp-* repl-temp-*

View File

@ -4,7 +4,7 @@ deps
*.beam *.beam
*.plt *.plt
erl_crash.dump erl_crash.dump
ebin ebin/*.beam
rel/example_project rel/example_project
.concrete/DEV_MODE .concrete/DEV_MODE
.rebar .rebar

View File

@ -1,4 +1,12 @@
.architect .architect
bootstrap.css
bootstrap.js
bootstrap.json bootstrap.json
bootstrap.jsonp
build/ build/
classic.json
classic.jsonp
ext/ ext/
modern.json
modern.jsonp
resources/sass/.sass-cache/

1
Global/Ansible.gitignore Normal file
View File

@ -0,0 +1 @@
*.retry

2
Global/Bazaar.gitignore Normal file
View File

@ -0,0 +1,2 @@
.bzr/
.bzrignore

View File

@ -39,4 +39,7 @@ flycheck_*.el
/server/ /server/
# projectiles files # projectiles files
.projectile .projectile
# directory configuration
.dir-locals.el

View File

@ -1,2 +0,0 @@
# Temporary data
.ipynb_checkpoints/

View File

@ -2,26 +2,24 @@
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff: # User-specific stuff:
.idea/workspace.xml .idea/**/workspace.xml
.idea/tasks.xml .idea/**/tasks.xml
.idea/dictionaries
.idea/vcs.xml
.idea/jsLibraryMappings.xml
# Sensitive or high-churn files: # Sensitive or high-churn files:
.idea/dataSources.ids .idea/**/dataSources/
.idea/dataSources.xml .idea/**/dataSources.ids
.idea/dataSources.local.xml .idea/**/dataSources.xml
.idea/sqlDataSources.xml .idea/**/dataSources.local.xml
.idea/dynamic.xml .idea/**/sqlDataSources.xml
.idea/uiDesigner.xml .idea/**/dynamic.xml
.idea/**/uiDesigner.xml
# Gradle: # Gradle:
.idea/gradle.xml .idea/**/gradle.xml
.idea/libraries .idea/**/libraries
# Mongo Explorer plugin: # Mongo Explorer plugin:
.idea/mongoSettings.xml .idea/**/mongoSettings.xml
## File-based project format: ## File-based project format:
*.iws *.iws

View File

@ -8,3 +8,6 @@
# Linux trash folder which might appear on any partition or disk # Linux trash folder which might appear on any partition or disk
.Trash-* .Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*

View File

@ -17,3 +17,6 @@ slprj/
# Session info # Session info
octave-workspace octave-workspace
# Simulink autosave extension
.autosave

View File

@ -3,5 +3,4 @@ build/
nbbuild/ nbbuild/
dist/ dist/
nbdist/ nbdist/
nbactions.xml
.nb-gradle/ .nb-gradle/

24
Global/Stata.gitignore Normal file
View File

@ -0,0 +1,24 @@
# .gitignore file for git projects containing Stata files
# Commercial statistical software: http://www.stata.com
# Stata dataset and output files
*.dta
*.gph
*.log
*.smcl
*.stpr
*.stsem
# Graphic export files from Stata
# Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf
#
# You may add graphic export files to your .gitignore. However you should be
# aware that this will exclude all image files from this main directory
# and subdirectories.
# *.ps
# *.eps
# *.wmf
# *.emf
# *.pdf
# *.png
# *.tif

View File

@ -20,6 +20,9 @@ Package Control.ca-bundle
Package Control.system-ca-bundle Package Control.system-ca-bundle
Package Control.cache/ Package Control.cache/
Package Control.ca-certs/ Package Control.ca-certs/
Package Control.merged-ca-bundle
Package Control.user-ca-bundle
oscrypto-ca-bundle.crt
bh_unicode_properties.cache bh_unicode_properties.cache
# Sublime-github package stores a github token in this file # Sublime-github package stores a github token in this file

View File

@ -9,6 +9,7 @@ gtags.files
GTAGS GTAGS
GRTAGS GRTAGS
GPATH GPATH
GSYMS
cscope.files cscope.files
cscope.out cscope.out
cscope.in.out cscope.in.out

View File

@ -1,6 +1,8 @@
# swap # swap
[._]*.s[a-w][a-z] [._]*.s[a-v][a-z]
[._]s[a-w][a-z] [._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
# session # session
Session.vim Session.vim
# temporary # temporary

View File

@ -1,2 +1,5 @@
.vscode .vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

View File

@ -1,6 +1,7 @@
# Windows image file caches # Windows thumbnail cache files
Thumbs.db Thumbs.db
ehthumbs.db ehthumbs.db
ehthumbs_vista.db
# Folder config file # Folder config file
Desktop.ini Desktop.ini

View File

@ -1,25 +1,26 @@
*.DS_Store *.DS_Store
.AppleDouble .AppleDouble
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails
._* # Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100 # Files that might appear in the root of a volume
.fseventsd .DocumentRevisions-V100
.Spotlight-V100 .fseventsd
.TemporaryItems .Spotlight-V100
.Trashes .TemporaryItems
.VolumeIcon.icns .Trashes
.com.apple.timemachine.donotpresent .VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB # Directories potentially created on remote AFP share
.AppleDesktop .AppleDB
Network Trash Folder .AppleDesktop
Temporary Items Network Trash Folder
.apdisk Temporary Items
.apdisk

View File

@ -1,24 +1,14 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects) # Binaries for programs and plugins
*.o
*.a
*.so
# Folders
_obj
_test
# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe *.exe
*.dll
*.so
*.dylib
# Test binary, build with `go test -c`
*.test *.test
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

View File

@ -1,5 +1,5 @@
.gradle .gradle
build/ /build/
# Ignore Gradle GUI config # Ignore Gradle GUI config
gradle-app.setting gradle-app.setting

View File

@ -17,3 +17,4 @@ cabal.sandbox.config
*.eventlog *.eventlog
.stack-work/ .stack-work/
cabal.project.local cabal.project.local
.HTF/

View File

@ -1,5 +1,8 @@
*.class *.class
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME) # Mobile Tools for Java (J2ME)
.mtj.tmp/ .mtj.tmp/

View File

@ -29,8 +29,6 @@
/administrator/components/com_search/* /administrator/components/com_search/*
/administrator/components/com_templates/* /administrator/components/com_templates/*
/administrator/components/com_users/* /administrator/components/com_users/*
/administrator/components/com_weblinks/*
/administrator/components/index.html
/administrator/help/* /administrator/help/*
/administrator/includes/* /administrator/includes/*
/administrator/language/en-GB/en-GB.com_ajax.ini /administrator/language/en-GB/en-GB.com_ajax.ini
@ -41,7 +39,6 @@
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini /administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.com_postinstall.ini /administrator/language/en-GB/en-GB.com_postinstall.ini
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini /administrator/language/en-GB/en-GB.com_postinstall.sys.ini
/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini
/administrator/language/en-GB/en-GB.com_tags.ini /administrator/language/en-GB/en-GB.com_tags.ini
/administrator/language/en-GB/en-GB.com_tags.sys.ini /administrator/language/en-GB/en-GB.com_tags.sys.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.ini /administrator/language/en-GB/en-GB.mod_stats_admin.ini
@ -52,6 +49,7 @@
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini /administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
/administrator/language/en-GB/en-GB.plg_content_finder.ini /administrator/language/en-GB/en-GB.plg_content_finder.ini
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini /administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
/administrator/language/en-GB/en-GB.plg_editors-xtd_module*
/administrator/language/en-GB/en-GB.plg_finder_categories.ini /administrator/language/en-GB/en-GB.plg_finder_categories.ini
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini /administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini /administrator/language/en-GB/en-GB.plg_finder_contacts.ini
@ -64,6 +62,10 @@
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini /administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini /administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini /administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller*
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini /administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini /administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini /administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
@ -72,6 +74,8 @@
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini /administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini /administrator/language/en-GB/en-GB.plg_system_languagecode.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini /administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
/administrator/language/en-GB/en-GB.plg_system_stats*
/administrator/language/en-GB/en-GB.plg_system_updatenotification*
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini /administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini /administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini /administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
@ -243,14 +247,11 @@
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini /administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
/administrator/language/en-GB/en-GB.plg_user_profile.ini /administrator/language/en-GB/en-GB.plg_user_profile.ini
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini
/administrator/language/en-GB/en-GB.tpl_hathor.ini /administrator/language/en-GB/en-GB.tpl_hathor.ini
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini /administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
/administrator/language/en-GB/en-GB.xml /administrator/language/en-GB/en-GB.xml
/administrator/language/en-GB/index.html
/administrator/language/overrides/* /administrator/language/overrides/*
/administrator/language/index.html /administrator/logs/index.html
/administrator/manifests/* /administrator/manifests/*
/administrator/modules/mod_custom/* /administrator/modules/mod_custom/*
/administrator/modules/mod_feed/* /administrator/modules/mod_feed/*
@ -269,12 +270,9 @@
/administrator/modules/mod_unread/* /administrator/modules/mod_unread/*
/administrator/modules/mod_version/* /administrator/modules/mod_version/*
/administrator/modules/mod_stats_admin/* /administrator/modules/mod_stats_admin/*
/administrator/modules/index.html
/administrator/templates/bluestork/*
/administrator/templates/isis/* /administrator/templates/isis/*
/administrator/templates/hathor/* /administrator/templates/hathor/*
/administrator/templates/system/* /administrator/templates/system/*
/administrator/templates/index.html
/administrator/index.php /administrator/index.php
/cache/* /cache/*
/bin/* /bin/*
@ -289,10 +287,10 @@
/components/com_finder/* /components/com_finder/*
/components/com_mailto/* /components/com_mailto/*
/components/com_media/* /components/com_media/*
/components/com_modules/*
/components/com_newsfeeds/* /components/com_newsfeeds/*
/components/com_search/* /components/com_search/*
/components/com_users/* /components/com_users/*
/components/com_weblinks/*
/components/com_wrapper/* /components/com_wrapper/*
/components/index.html /components/index.html
/images/banners/* /images/banners/*
@ -393,7 +391,6 @@
/language/en-GB/en-GB.tpl_beez5.ini /language/en-GB/en-GB.tpl_beez5.ini
/language/en-GB/en-GB.tpl_beez5.sys.ini /language/en-GB/en-GB.tpl_beez5.sys.ini
/language/en-GB/en-GB.xml /language/en-GB/en-GB.xml
/language/en-GB/index.html
/language/en-GB/install.xml /language/en-GB/install.xml
/language/overrides/* /language/overrides/*
/language/index.html /language/index.html
@ -407,6 +404,7 @@
/libraries/idna_convert/* /libraries/idna_convert/*
/libraries/joomla/* /libraries/joomla/*
/libraries/legacy/* /libraries/legacy/*
/libraries/php-encryption/*
/libraries/phpass/* /libraries/phpass/*
/libraries/phpmailer/* /libraries/phpmailer/*
/libraries/phputf8/* /libraries/phputf8/*
@ -417,8 +415,6 @@
/libraries/index.html /libraries/index.html
/libraries/import.php /libraries/import.php
/libraries/loader.php /libraries/loader.php
/libraries/platform.php
/logs/*
/media/cms/* /media/cms/*
/media/com_contenthistory/* /media/com_contenthistory/*
/media/com_finder/* /media/com_finder/*
@ -431,9 +427,11 @@
/media/media/* /media/media/*
/media/mod_languages/* /media/mod_languages/*
/media/overrider/* /media/overrider/*
/media/plg_captcha_recaptcha/*
/media/plg_quickicon_extensionupdate/* /media/plg_quickicon_extensionupdate/*
/media/plg_quickicon_joomlaupdate/* /media/plg_quickicon_joomlaupdate/*
/media/plg_system_highlight/* /media/plg_system_highlight/*
/media/plg_system_stats/*
/media/system/* /media/system/*
/media/index.html /media/index.html
/modules/mod_articles_archive/* /modules/mod_articles_archive/*
@ -459,7 +457,6 @@
/modules/mod_tags_popular/* /modules/mod_tags_popular/*
/modules/mod_tags_similar/* /modules/mod_tags_similar/*
/modules/mod_users_latest/* /modules/mod_users_latest/*
/modules/mod_weblinks/*
/modules/mod_whosonline/* /modules/mod_whosonline/*
/modules/mod_wrapper/* /modules/mod_wrapper/*
/modules/index.html /modules/index.html
@ -468,9 +465,7 @@
/plugins/authentication/joomla/* /plugins/authentication/joomla/*
/plugins/authentication/ldap/* /plugins/authentication/ldap/*
/plugins/authentication/cookie/* /plugins/authentication/cookie/*
/plugins/authentication/index.html
/plugins/captcha/recaptcha/* /plugins/captcha/recaptcha/*
/plugins/captcha/index.html
/plugins/content/emailcloak/* /plugins/content/emailcloak/*
/plugins/content/example/* /plugins/content/example/*
/plugins/content/finder/* /plugins/content/finder/*
@ -481,26 +476,21 @@
/plugins/content/pagenavigation/* /plugins/content/pagenavigation/*
/plugins/content/vote/* /plugins/content/vote/*
/plugins/content/contact/* /plugins/content/contact/*
/plugins/content/index.html
/plugins/editors/codemirror/* /plugins/editors/codemirror/*
/plugins/editors/none/* /plugins/editors/none/*
/plugins/editors/tinymce/* /plugins/editors/tinymce/*
/plugins/editors/index.html /plugins/editors-xtd/module/*
/plugins/editors-xtd/article/* /plugins/editors-xtd/article/*
/plugins/editors-xtd/image/* /plugins/editors-xtd/image/*
/plugins/editors-xtd/pagebreak/* /plugins/editors-xtd/pagebreak/*
/plugins/editors-xtd/readmore/* /plugins/editors-xtd/readmore/*
/plugins/editors-xtd/index.html
/plugins/extension/example/* /plugins/extension/example/*
/plugins/extension/joomla/* /plugins/extension/joomla/*
/plugins/extension/index.html
/plugins/finder/index.html
/plugins/finder/categories/* /plugins/finder/categories/*
/plugins/finder/contacts/* /plugins/finder/contacts/*
/plugins/finder/content/* /plugins/finder/content/*
/plugins/finder/newsfeeds/* /plugins/finder/newsfeeds/*
/plugins/finder/tags/* /plugins/finder/tags/*
/plugins/finder/weblinks/*
/plugins/installer/* /plugins/installer/*
/plugins/quickicon/extensionupdate/* /plugins/quickicon/extensionupdate/*
/plugins/quickicon/joomlaupdate/* /plugins/quickicon/joomlaupdate/*
@ -523,6 +513,8 @@
/plugins/system/redirect/* /plugins/system/redirect/*
/plugins/system/remember/* /plugins/system/remember/*
/plugins/system/sef/* /plugins/system/sef/*
/plugins/system/stats/*
/plugins/system/updatenotification/*
/plugins/system/index.html /plugins/system/index.html
/plugins/twofactorauth/* /plugins/twofactorauth/*
/plugins/user/contactcreator/* /plugins/user/contactcreator/*
@ -531,10 +523,7 @@
/plugins/user/profile/* /plugins/user/profile/*
/plugins/user/index.html /plugins/user/index.html
/plugins/index.html /plugins/index.html
/templates/atomic/*
/templates/beez3/* /templates/beez3/*
/templates/beez_20/*
/templates/beez5/*
/templates/protostar/* /templates/protostar/*
/templates/system/* /templates/system/*
/templates/index.html /templates/index.html

View File

@ -13,7 +13,8 @@ _autosave-*
*.net *.net
# Autorouter files (exported from Pcbnew) # Autorouter files (exported from Pcbnew)
.dsn *.dsn
*.ses
# Exported BOM files # Exported BOM files
*.xml *.xml

129
LICENSE
View File

@ -1,19 +1,116 @@
Copyright (c) 2016 GitHub, Inc. CC0 1.0 Universal
Permission is hereby granted, free of charge, to any person obtaining a Statement of Purpose
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in The laws of most jurisdictions throughout the world automatically confer
all copies or substantial portions of the Software. exclusive Copyright and Related Rights (defined below) upon the creator and
subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR Certain owners wish to permanently relinquish those rights to a Work for the
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, purpose of contributing to a commons of creative, cultural and scientific
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE works ("Commons") that the public can reliably and without fear of later
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER claims of infringement build upon, modify, incorporate in other works, reuse
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING and redistribute as freely as possible in any form whatsoever and for any
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER purposes, including without limitation commercial purposes. These owners may
DEALINGS IN THE SOFTWARE. contribute to the Commons to promote the ideal of a free culture and the
further production of creative, cultural and scientific works, or to gain
reputation or greater distribution for their Work in part through the use and
efforts of others.
For these and/or other purposes and motivations, and without any expectation
of additional consideration or compensation, the person associating CC0 with a
Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
and publicly distribute the Work under its terms, with knowledge of his or her
Copyright and Related Rights in the Work and the meaning and intended legal
effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not limited
to, the following:
i. the right to reproduce, adapt, distribute, perform, display, communicate,
and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or likeness
depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data in
a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation thereof,
including any amended or successor version of such directive); and
vii. other similar, equivalent or corresponding rights throughout the world
based on applicable law or treaty, and any national implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention of,
applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
and Related Rights and associated claims and causes of action, whether now
known or unknown (including existing as well as future claims and causes of
action), in the Work (i) in all territories worldwide, (ii) for the maximum
duration provided by applicable law or treaty (including future time
extensions), (iii) in any current or future medium and for any number of
copies, and (iv) for any purpose whatsoever, including without limitation
commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
the Waiver for the benefit of each member of the public at large and to the
detriment of Affirmer's heirs and successors, fully intending that such Waiver
shall not be subject to revocation, rescission, cancellation, termination, or
any other legal or equitable action to disrupt the quiet enjoyment of the Work
by the public as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason be
judged legally invalid or ineffective under applicable law, then the Waiver
shall be preserved to the maximum extent permitted taking into account
Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
is so judged Affirmer hereby grants to each affected person a royalty-free,
non transferable, non sublicensable, non exclusive, irrevocable and
unconditional license to exercise Affirmer's Copyright and Related Rights in
the Work (i) in all territories worldwide, (ii) for the maximum duration
provided by applicable law or treaty (including future time extensions), (iii)
in any current or future medium and for any number of copies, and (iv) for any
purpose whatsoever, including without limitation commercial, advertising or
promotional purposes (the "License"). The License shall be deemed effective as
of the date CC0 was applied by Affirmer to the Work. Should any part of the
License for any reason be judged legally invalid or ineffective under
applicable law, such partial invalidity or ineffectiveness shall not
invalidate the remainder of the License, and in such case Affirmer hereby
affirms that he or she will not (i) exercise any of his or her remaining
Copyright and Related Rights in the Work or (ii) assert any associated claims
and causes of action with respect to the Work, in either case contrary to
Affirmer's express Statement of Purpose.
4. Limitations and Disclaimers.
a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or warranties
of any kind concerning the Work, express, implied, statutory or otherwise,
including without limitation warranties of title, merchantability, fitness
for a particular purpose, non infringement, or the absence of latent or
other defects, accuracy, or the present or absence of errors, whether or not
discoverable, all to the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without limitation
any person's Copyright and Related Rights in the Work. Further, Affirmer
disclaims responsibility for obtaining any necessary consents, permissions
or other rights required for any use of the Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to this
CC0 or use of the Work.
For more information, please see
<http://creativecommons.org/publicdomain/zero/1.0/>

View File

@ -1,15 +1,20 @@
vendor/ vendor/
node_modules/ node_modules/
npm-debug.log
# Laravel 4 specific # Laravel 4 specific
bootstrap/compiled.php bootstrap/compiled.php
app/storage/ app/storage/
# Laravel 5 & Lumen specific # Laravel 5 & Lumen specific
bootstrap/cache/ public/storage
public/hot
storage/*.key
.env.*.php .env.*.php
.env.php .env.php
.env .env
Homestead.yaml
Homestead.json
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer # Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/ .rocketeer/

View File

@ -1,6 +1,7 @@
pom.xml pom.xml
pom.xml.asc pom.xml.asc
*jar *.jar
*.class
/lib/ /lib/
/classes/ /classes/
/target/ /target/

View File

@ -1,104 +1,16 @@
.htaccess.sample #--------------------------#
.modgit/ # Magento Default Files #
.modman/ #--------------------------#
app/code/community/Phoenix/Moneybookers/
app/code/community/Cm/RedisSession/ /app/etc/local.xml
app/code/core/ /media/*
app/design/adminhtml/default/default/ !/media/.htaccess
app/design/frontend/base/ !/media/customer/.htaccess
app/design/frontend/rwd/ !/media/dhl/logo.jpg
app/design/frontend/default/blank/ !/media/downloadable/.htaccess
app/design/frontend/default/default/ !/media/xmlconnect/custom/ok.gif
app/design/frontend/default/iphone/ !/media/xmlconnect/original/ok.gif
app/design/frontend/default/modern/ !/media/xmlconnect/system/ok.gif
app/design/frontend/enterprise/default /var/*
app/design/install/ !/var/.htaccess
app/etc/modules/Enterprise_* !/var/package/*.xml
app/etc/modules/Mage_*.xml
app/etc/modules/Phoenix_Moneybookers.xml
app/etc/modules/Cm_RedisSession.xml
app/etc/applied.patches.list
app/etc/config.xml
app/etc/enterprise.xml
app/etc/local.xml.additional
app/etc/local.xml.template
app/etc/local.xml
app/.htaccess
app/bootstrap.php
app/locale/en_US/
app/Mage.php
/cron.php
cron.sh
dev/.htaccess
dev/tests/functional/
downloader/
errors/
favicon.ico
/get.php
includes/
/index.php
index.php.sample
/install.php
js/blank.html
js/calendar/
js/enterprise/
js/extjs/
js/firebug/
js/flash/
js/index.php
js/jscolor/
js/lib/
js/mage/
js/prototype/
js/scriptaculous/
js/spacer.gif
js/tiny_mce/
js/varien/
lib/3Dsecure/
lib/Apache/
lib/flex/
lib/googlecheckout/
lib/.htaccess
lib/LinLibertineFont/
lib/Mage/
lib/PEAR/
lib/Pelago/
lib/phpseclib/
lib/Varien/
lib/Zend/
lib/Cm/
lib/Credis/
lib/Magento/
LICENSE_AFL.txt
LICENSE.html
LICENSE.txt
LICENSE_EE*
/mage
media/
/api.php
nbproject/
pear
pear/
php.ini.sample
pkginfo/
RELEASE_NOTES.txt
shell/.htaccess
shell/abstract.php
shell/compiler.php
shell/indexer.php
shell/log.php
sitemap.xml
skin/adminhtml/default/default/
skin/adminhtml/default/enterprise
skin/frontend/base/
skin/frontend/rwd/
skin/frontend/default/blank/
skin/frontend/default/blue/
skin/frontend/default/default/
skin/frontend/default/french/
skin/frontend/default/german/
skin/frontend/default/iphone/
skin/frontend/default/modern/
skin/frontend/enterprise
skin/install/
var/

View File

@ -7,3 +7,6 @@ release.properties
dependency-reduced-pom.xml dependency-reduced-pom.xml
buildNumber.properties buildNumber.properties
.mvn/timing.properties .mvn/timing.properties
# Exclude maven wrapper
!/.mvn/wrapper/maven-wrapper.jar

View File

@ -1,6 +1,6 @@
# For projects using nanoc (http://nanoc.ws/) # For projects using Nanoc (http://nanoc.ws/)
# Default location for output, needs to match output_dir's value found in config.yaml # Default location for output (needs to match output_dir's value found in nanoc.yaml)
output/ output/
# Temporary file directory # Temporary file directory

View File

@ -7,6 +7,7 @@ npm-debug.log*
pids pids
*.pid *.pid
*.seed *.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover # Directory for instrumented libs generated by jscoverage/JSCover
lib-cov lib-cov
@ -20,6 +21,9 @@ coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt .grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration # node-waf configuration
.lock-wscript .lock-wscript
@ -27,11 +31,27 @@ coverage
build/Release build/Release
# Dependency directories # Dependency directories
node_modules node_modules/
jspm_packages jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory # Optional npm cache directory
.npm .npm
# Optional eslint cache
.eslintcache
# Optional REPL history # Optional REPL history
.node_repl_history .node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env

View File

@ -19,7 +19,8 @@ xcuserdata/
## Other ## Other
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
@ -50,9 +51,11 @@ Carthage/Build
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots fastlane/screenshots
fastlane/test_output
#Code Injection # Code Injection
# #
# After new code Injection tools there's a generated folder /iOSInjectionProject # After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode # https://github.com/johnno1962/injectionforxcode

View File

@ -11,3 +11,10 @@ system/cache/
system/logs/ system/logs/
system/storage/ system/storage/
# vQmod log files
vqmod/logs/*
# vQmod cache files
vqmod/vqcache/*
vqmod/checked.cache
vqmod/mods.cache

View File

@ -1,20 +1,35 @@
/blib/
/.build/
_build/
cover_db/
inc/
Build
!Build/ !Build/
Build.bat
.last_cover_stats .last_cover_stats
/Makefile
/Makefile.old
/MANIFEST.bak
/META.yml /META.yml
/META.json /META.json
/MYMETA.* /MYMETA.*
nytprof.out
/pm_to_blib
*.o *.o
*.pm.tdy
*.bs *.bs
# Devel::Cover
cover_db/
# Devel::NYTProf
nytprof.out
# Dizt::Zilla
/.build/
# Module::Build
_build/
Build
Build.bat
# Module::Install
inc/
# ExtUitls::MakeMaker
/blib/
/_eumm/ /_eumm/
/*.gz
/Makefile
/Makefile.old
/MANIFEST.bak
/pm_to_blib
/*.zip

8
PureScript.gitignore Normal file
View File

@ -0,0 +1,8 @@
# Dependencies
.psci_modules
bower_components
node_modules
# Generated files
.psci
output

View File

@ -20,6 +20,7 @@ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
@ -66,7 +67,7 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# IPython Notebook # Jupyter Notebook
.ipynb_checkpoints .ipynb_checkpoints
# pyenv # pyenv
@ -79,6 +80,7 @@ celerybeat-schedule
.env .env
# virtualenv # virtualenv
.venv
venv/ venv/
ENV/ ENV/

View File

@ -34,5 +34,5 @@ Makefile*
*.qmlproject.user.* *.qmlproject.user.*
# QtCtreator CMake # QtCtreator CMake
CMakeLists.txt.user CMakeLists.txt.user*

View File

@ -53,6 +53,11 @@ high quality, we request that contributions adhere to the following guidelines.
In general, the more you can do to help us understand the change youre making, In general, the more you can do to help us understand the change youre making,
the more likely well be to accept your contribution quickly. the more likely well be to accept your contribution quickly.
If a template is mostly a list of files installed by a particular version of
some software (e.g. a PHP framework) then it's brittle and probably no more
helpful than a simple `ls`. If it's not possible to curate a small set of
useful rules, then the template might not be a good fit for this collection.
Please also understand that we cant list every tool that ever existed. Please also understand that we cant list every tool that ever existed.
Our aim is to curate a collection of the *most common and helpful* templates, Our aim is to curate a collection of the *most common and helpful* templates,
not to make sure we cover every project possible. If we choose not to not to make sure we cover every project possible. If we choose not to
@ -76,4 +81,4 @@ by automatically forking the project and prompting to send a pull request too.
## License ## License
[MIT](./LICENSE). [CC0-1.0](./LICENSE).

View File

@ -12,9 +12,11 @@ capybara-*.html
rerun.txt rerun.txt
pickle-email-*.html pickle-email-*.html
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb config/initializers/secret_token.rb
config/secrets.yml
# Only include if you have production secrets in this file, which is no longer a Rails default
# config/secrets.yml
# dotenv # dotenv
# TODO Comment out this rule if environment variables can be committed # TODO Comment out this rule if environment variables can be committed

View File

@ -5,3 +5,6 @@
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock # More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

View File

@ -13,5 +13,11 @@ project/boot/
project/plugins/project/ project/plugins/project/
# Scala-IDE specific # Scala-IDE specific
.ensime
.ensime_cache/
.scala_dependencies .scala_dependencies
.worksheet .worksheet
# ENSIME specific
.ensime_cache/
.ensime

View File

@ -7,6 +7,7 @@
# For development the cache directory can be safely ignored and # For development the cache directory can be safely ignored and
# therefore it is ignored. # therefore it is ignored.
/cache/ /cache/
!/cache/index.html
# Ignore some files and directories from the custom directory. # Ignore some files and directories from the custom directory.
/custom/history/ /custom/history/
/custom/modulebuilder/ /custom/modulebuilder/
@ -22,4 +23,5 @@
*.log *.log
# Ignore the new upload directories. # Ignore the new upload directories.
/upload/ /upload/
!/upload/index.html
/upload_backup/ /upload_backup/

View File

@ -19,7 +19,8 @@ xcuserdata/
## Other ## Other
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
@ -35,6 +36,7 @@ playground.xcworkspace
# #
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/ # Packages/
# Package.pins
.build/ .build/
# CocoaPods # CocoaPods

View File

@ -31,9 +31,6 @@
/web/bundles/ /web/bundles/
/web/uploads/ /web/uploads/
# Assets managed by Bower
/web/assets/vendor/
# PHPUnit # PHPUnit
/app/phpunit.xml /app/phpunit.xml
/phpunit.xml /phpunit.xml
@ -45,4 +42,4 @@
/composer.phar /composer.phar
# Backup entities generated with doctrine:generate:entities command # Backup entities generated with doctrine:generate:entities command
*/Entity/*~ **/Entity/*~

View File

@ -19,6 +19,9 @@
# *.eps # *.eps
# *.pdf # *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber): ## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl *.bbl
*.bcf *.bcf
@ -31,6 +34,7 @@
## Build tool auxiliary files: ## Build tool auxiliary files:
*.fdb_latexmk *.fdb_latexmk
*.synctex *.synctex
*.synctex(busy)
*.synctex.gz *.synctex.gz
*.synctex.gz(busy) *.synctex.gz(busy)
*.pdfsync *.pdfsync
@ -48,15 +52,34 @@ acs-*.bib
# beamer # beamer
*.nav *.nav
*.pre
*.snm *.snm
*.vrb *.vrb
# changes
*.soc
# cprotect # cprotect
*.cpt *.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme # fixme
*.lox *.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
*.[1-9]
*.[1-9][0-9]
#(r)(e)ledmac/(r)(e)ledpar #(r)(e)ledmac/(r)(e)ledpar
*.end *.end
*.?end *.?end
@ -84,6 +107,10 @@ acs-*.bib
# gnuplottex # gnuplottex
*-gnuplottex-* *-gnuplottex-*
# gregoriotex
*.gaux
*.gtex
# hyperref # hyperref
*.brf *.brf
@ -106,9 +133,7 @@ acs-*.bib
*.maf *.maf
*.mlf *.mlf
*.mlt *.mlt
*.mtc *.mtc[0-9]*
*.mtc[0-9]
*.mtc[1-9][0-9]
# minted # minted
_minted* _minted*
@ -123,11 +148,17 @@ _minted*
# nomencl # nomencl
*.nlo *.nlo
# pax
*.pax
# sagetex # sagetex
*.sagetex.sage *.sagetex.sage
*.sagetex.py *.sagetex.py
*.sagetex.scmd *.sagetex.scmd
# scrwfile
*.wrt
# sympy # sympy
*.sout *.sout
*.sympy *.sympy
@ -152,6 +183,9 @@ pythontex-files-*/
# todonotes # todonotes
*.tdo *.tdo
# easy-todo
*.lod
# xindy # xindy
*.xdy *.xdy
@ -178,3 +212,9 @@ TSWLatexianTemp*
# KBibTeX # KBibTeX
*~[0-9]* *~[0-9]*
# auto folder when using emacs and auctex
/auto/*
# expex forward references with \gathertags
*-tags.tex

View File

@ -1,3 +1,6 @@
# Compiled files # Compiled files
*.tfstate *.tfstate
*.tfstate.backup *.tfstate.backup
# Module directory
.terraform/

View File

@ -5,8 +5,12 @@
/[Bb]uilds/ /[Bb]uilds/
/Assets/AssetStoreTools* /Assets/AssetStoreTools*
# Autogenerated VS/MD solution and project files # Visual Studio 2015 cache directory
/.vs/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/ ExportedObj/
.consulo/
*.csproj *.csproj
*.unityproj *.unityproj
*.sln *.sln
@ -17,6 +21,7 @@ ExportedObj/
*.pidb *.pidb
*.booproj *.booproj
*.svd *.svd
*.pdb
# Unity3D generated meta files # Unity3D generated meta files

View File

@ -1,6 +1,9 @@
# Visual Studio 2015 user specific files # Visual Studio 2015 user specific files
.vs/ .vs/
# Visual Studio 2015 database file
*.VC.db
# Compiled Object files # Compiled Object files
*.slo *.slo
*.lo *.lo
@ -33,10 +36,12 @@
# These project files can be generated by the engine # These project files can be generated by the engine
*.xcodeproj *.xcodeproj
*.xcworkspace
*.sln *.sln
*.suo *.suo
*.opensdf *.opensdf
*.sdf *.sdf
*.VC.db
*.VC.opendb *.VC.opendb
# Precompiled Assets # Precompiled Assets
@ -52,6 +57,9 @@ Build/*
# Don't ignore icon files in Build # Don't ignore icon files in Build
!Build/**/*.ico !Build/**/*.ico
# Built data for maps
*_BuiltData.uasset
# Configuration files generated by the Editor # Configuration files generated by the Editor
Saved/* Saved/*

View File

@ -1,5 +1,7 @@
## Ignore Visual Studio temporary files, build results, and ## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons. ## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files # User-specific files
*.suo *.suo
@ -40,9 +42,11 @@ TestResult.xml
[Rr]eleasePS/ [Rr]eleasePS/
dlldata.c dlldata.c
# DNX # .NET Core
project.lock.json project.lock.json
project.fragment.lock.json
artifacts/ artifacts/
**/Properties/launchSettings.json
*_i.c *_i.c
*_p.c *_p.c
@ -109,6 +113,10 @@ _TeamCity*
# DotCover is a Code Coverage Tool # DotCover is a Code Coverage Tool
*.dotCover *.dotCover
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch # NCrunch
_NCrunch_* _NCrunch_*
.*crunch*.local.xml .*crunch*.local.xml
@ -188,9 +196,9 @@ ClientBin/
*~ *~
*.dbmdl *.dbmdl
*.dbproj.schemaview *.dbproj.schemaview
*.jfm
*.pfx *.pfx
*.publishsettings *.publishsettings
node_modules/
orleans.codegen.cs orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components # Since there are multiple workflows, uncomment next line to ignore bower_components
@ -225,6 +233,10 @@ FakesAssemblies/
# Node.js Tools for Visual Studio # Node.js Tools for Visual Studio
.ntvs_analysis.dat .ntvs_analysis.dat
node_modules/
# Typescript v1 declaration files
typings/
# Visual Studio 6 build log # Visual Studio 6 build log
*.plg *.plg
@ -232,6 +244,9 @@ FakesAssemblies/
# Visual Studio 6 workspace options file # Visual Studio 6 workspace options file
*.opt *.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output # Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts **/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts
@ -250,3 +265,14 @@ paket-files/
# JetBrains Rider # JetBrains Rider
.idea/ .idea/
*.sln.iml *.sln.iml
# CodeRush
.cr/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

View File

@ -1,4 +1,9 @@
# for projects that use Waf for building: http://code.google.com/p/waf/ # For projects that use the Waf build system: https://waf.io/
.waf-* # Dot-hidden on Unix-like systems
.waf3-* .waf-*-*/
.lock-* .waf3-*-*/
# Hidden directory on Windows (no dot)
waf-*-*/
waf3-*-*/
# Lockfile
.lock-waf_*_build