提交 ebeaf40e 编写于 作者: B Brendan Forster 提交者: GitHub

Merge branch 'master' into tabs-studio

...@@ -37,6 +37,7 @@ captures/ ...@@ -37,6 +37,7 @@ captures/
.idea/workspace.xml .idea/workspace.xml
.idea/tasks.xml .idea/tasks.xml
.idea/gradle.xml .idea/gradle.xml
.idea/dictionaries
.idea/libraries .idea/libraries
# Keystore files # Keystore files
...@@ -44,3 +45,11 @@ captures/ ...@@ -44,3 +45,11 @@ captures/
# External native build folder generated in Android Studio 2.2 and later # External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild .externalNativeBuild
# Google Services (e.g. APIs or Firebase)
google-services.json
# Freeline
freeline.py
freeline/
freeline_project_description.json
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
# Kernel Module Compile Results # Kernel Module Compile Results
*.mod* *.mod*
*.cmd *.cmd
.tmp_versions/
modules.order modules.order
Module.symvers Module.symvers
Mkfile.old Mkfile.old
......
...@@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines. ...@@ -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 you’re making, In general, the more you can do to help us understand the change you’re making,
the more likely we’ll be to accept your contribution quickly. the more likely we’ll 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 can’t list every tool that ever existed. Please also understand that we can’t 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
......
...@@ -9,3 +9,9 @@ user_guide_src/build/* ...@@ -9,3 +9,9 @@ user_guide_src/build/*
user_guide_src/cilexer/build/* user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/* user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/* user_guide_src/cilexer/pycilexer.egg-info/*
#codeigniter 3
application/logs/*
!application/logs/index.html
!application/logs/.htaccess
/vendor/
# 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
# SDK 1.20 and later (no longer creates packages directories)
.packages .packages
.pub/ .pub/
build/ build/
# If you're building an application, you may want to check-in your pubspec.lock
# Older SDK versions pubspec.lock
# (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20)
.project
.buildlog
**/packages/
# Files created by dart2js
# (Most Dart developers will use pub build to compile Dart, use/modify these
# rules if you intend to use dart2js directly
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
# differentiate from explicit Javascript files)
*.dart.js
*.part.js
*.js.deps
*.js.map
*.info.json
# Directory created by dartdoc # Directory created by dartdoc
# If you don't generate documentation locally you can remove this line.
doc/api/ doc/api/
# Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock
...@@ -5,17 +5,18 @@ ...@@ -5,17 +5,18 @@
*.rar *.rar
*.zip *.zip
*.gz *.gz
*.tgz
*.bzip *.bzip
*.bz2 *.bz2
*.xz *.xz
*.lzma *.lzma
*.cab *.cab
#packing-only formats # Packing-only formats
*.iso *.iso
*.tar *.tar
#package management formats # Package management formats
*.dmg *.dmg
*.xpi *.xpi
*.gem *.gem
......
...@@ -11,9 +11,6 @@ local.properties ...@@ -11,9 +11,6 @@ local.properties
.loadpath .loadpath
.recommenders .recommenders
# Eclipse Core
.project
# External tool builders # External tool builders
.externalToolBuilders/ .externalToolBuilders/
...@@ -26,9 +23,6 @@ local.properties ...@@ -26,9 +23,6 @@ local.properties
# CDT-specific (C/C++ Development Tooling) # CDT-specific (C/C++ Development Tooling)
.cproject .cproject
# JDT-specific (Eclipse Java Development Tools)
.classpath
# Java annotation processor (APT) # Java annotation processor (APT)
.factorypath .factorypath
...@@ -49,3 +43,8 @@ local.properties ...@@ -49,3 +43,8 @@ local.properties
# Code Recommenders # Code Recommenders
.recommenders/ .recommenders/
# Scala IDE specific (Scala & Java development for Eclipse)
.cache-main
.scala_dependencies
.worksheet
# JEnv local Java version configuration file
.java-version
# Used by previous versions of JEnv
.jenv-version
...@@ -2,24 +2,28 @@ ...@@ -2,24 +2,28 @@
# 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
# Sensitive or high-churn files: # Sensitive or high-churn files:
.idea/dataSources/ .idea/**/dataSources/
.idea/dataSources.ids .idea/**/dataSources.ids
.idea/dataSources.xml .idea/**/dataSources.xml
.idea/dataSources.local.xml .idea/**/dataSources.local.xml
.idea/sqlDataSources.xml .idea/**/sqlDataSources.xml
.idea/dynamic.xml .idea/**/dynamic.xml
.idea/uiDesigner.xml .idea/**/uiDesigner.xml
# Gradle: # Gradle:
.idea/gradle.xml .idea/**/gradle.xml
.idea/libraries .idea/**/libraries
# CMake
cmake-build-debug/
# Mongo Explorer plugin: # Mongo Explorer plugin:
.idea/mongoSettings.xml .idea/**/mongoSettings.xml
## File-based project format: ## File-based project format:
*.iws *.iws
...@@ -35,6 +39,9 @@ ...@@ -35,6 +39,9 @@
# JIRA plugin # JIRA plugin
atlassian-ide-plugin.xml atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# Crashlytics plugin (for Android Studio and IntelliJ) # Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml
crashlytics.properties crashlytics.properties
......
...@@ -17,3 +17,6 @@ slprj/ ...@@ -17,3 +17,6 @@ slprj/
# Session info # Session info
octave-workspace octave-workspace
# Simulink autosave extension
.autosave
...@@ -13,4 +13,4 @@ ...@@ -13,4 +13,4 @@
~$*.ppt* ~$*.ppt*
# Visio autosave temporary files # Visio autosave temporary files
*.~vsdx *.~vsd*
# Simple Build Tool # Simple Build Tool
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control # http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
dist/*
target/ target/
lib_managed/ lib_managed/
src_managed/ src_managed/
project/boot/ project/boot/
project/plugins/project/
.history .history
.cache .cache
.lib/
# .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
# cache files for sublime text # Cache files for Sublime Text
*.tmlanguage.cache *.tmlanguage.cache
*.tmPreferences.cache *.tmPreferences.cache
*.stTheme.cache *.stTheme.cache
# workspace files are user-specific # Workspace files are user-specific
*.sublime-workspace *.sublime-workspace
# project files should be checked into the repository, unless a significant # Project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText # proportion of contributors will probably not be using Sublime Text
# *.sublime-project # *.sublime-project
# sftp configuration file # SFTP configuration file
sftp-config.json sftp-config.json
# Package control specific files # Package control specific files
......
# General
.vagrant/ .vagrant/
# Log files (if you are creating logs in debug mode, uncomment this)
# *.logs
# swap # Swap
[._]*.s[a-v][a-z] [._]*.s[a-v][a-z]
[._]*.sw[a-p] [._]*.sw[a-p]
[._]s[a-v][a-z] [._]s[a-v][a-z]
[._]sw[a-p] [._]sw[a-p]
# session
# Session
Session.vim Session.vim
# temporary
# Temporary
.netrwhist .netrwhist
*~ *~
# auto-generated tag files # Auto-generated tag files
tags tags
...@@ -3,6 +3,9 @@ Thumbs.db ...@@ -3,6 +3,9 @@ Thumbs.db
ehthumbs.db ehthumbs.db
ehthumbs_vista.db ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file # Folder config file
Desktop.ini Desktop.ini
......
*.DS_Store # General
.AppleDouble *.DS_Store
.LSOverride .AppleDouble
.LSOverride
# Icon must end with two \r
Icon # Icon must end with two \r
Icon
# Thumbnails # Thumbnails
._* ._*
# Files that might appear in the root of a volume # Files that might appear in the root of a volume
.DocumentRevisions-V100 .DocumentRevisions-V100
.fseventsd .fseventsd
.Spotlight-V100 .Spotlight-V100
.TemporaryItems .TemporaryItems
.Trashes .Trashes
.VolumeIcon.icns .VolumeIcon.icns
.com.apple.timemachine.donotpresent .com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share # Directories potentially created on remote AFP share
.AppleDB .AppleDB
.AppleDesktop .AppleDesktop
Network Trash Folder Network Trash Folder
Temporary Items Temporary Items
.apdisk .apdisk
......
# Compiled Object files, Static and Dynamic libs (Shared Objects) # Binaries for programs and plugins
*.o *.exe
*.a *.dll
*.so *.so
*.dylib
# Folders # Test binary, build with `go test -c`
_obj
_test
# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe
*.test *.test
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE # Output of the go coverage tool, specifically when used with LiteIDE
*.out *.out
# External packages folder # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
vendor/ .glide/
# Compiled class file
*.class *.class
# Log file
*.log
# BlueJ files # BlueJ files
*.ctxt *.ctxt
...@@ -10,6 +14,9 @@ ...@@ -10,6 +14,9 @@
*.jar *.jar
*.war *.war
*.ear *.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
...@@ -29,8 +29,6 @@ ...@@ -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 @@ ...@@ -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
...@@ -250,15 +247,10 @@ ...@@ -250,15 +247,10 @@
/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/ru-RU/index.html
/administrator/language/overrides/* /administrator/language/overrides/*
/administrator/language/index.html
/administrator/logs/index.html /administrator/logs/index.html
/administrator/manifests/* /administrator/manifests/*
/administrator/modules/mod_custom/* /administrator/modules/mod_custom/*
...@@ -278,12 +270,9 @@ ...@@ -278,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/*
...@@ -302,7 +291,6 @@ ...@@ -302,7 +291,6 @@
/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/*
...@@ -403,7 +391,6 @@ ...@@ -403,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
...@@ -428,8 +415,6 @@ ...@@ -428,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/*
...@@ -472,7 +457,6 @@ ...@@ -472,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
...@@ -481,9 +465,7 @@ ...@@ -481,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/*
...@@ -494,27 +476,21 @@ ...@@ -494,27 +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/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/*
...@@ -547,10 +523,7 @@ ...@@ -547,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
......
vendor/ vendor/
node_modules/ node_modules/
npm-debug.log
# Laravel 4 specific # Laravel 4 specific
bootstrap/compiled.php bootstrap/compiled.php
...@@ -7,10 +8,13 @@ app/storage/ ...@@ -7,10 +8,13 @@ app/storage/
# Laravel 5 & Lumen specific # Laravel 5 & Lumen specific
public/storage public/storage
public/hot
storage/*.key 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/
.htaccess.sample #--------------------------#
.modgit/ # Magento Default Files #
.modman/ #--------------------------#
app/code/community/Phoenix/Moneybookers/
app/code/community/Cm/RedisSession/ /app/etc/local.xml
app/code/core/
app/design/adminhtml/default/default/ /media/*
app/design/frontend/base/ !/media/.htaccess
app/design/frontend/rwd/
app/design/frontend/default/blank/ !/media/customer
app/design/frontend/default/default/ /media/customer/*
app/design/frontend/default/iphone/ !/media/customer/.htaccess
app/design/frontend/default/modern/
app/design/frontend/enterprise/default !/media/dhl
app/design/install/ /media/dhl/*
app/etc/modules/Enterprise_* !/media/dhl/logo.jpg
app/etc/modules/Mage_*.xml
app/etc/modules/Phoenix_Moneybookers.xml !/media/downloadable
app/etc/modules/Cm_RedisSession.xml /media/downloadable/*
app/etc/applied.patches.list !/media/downloadable/.htaccess
app/etc/config.xml
app/etc/enterprise.xml !/media/xmlconnect
app/etc/local.xml.additional /media/xmlconnect/*
app/etc/local.xml.template
app/etc/local.xml !/media/xmlconnect/custom
app/.htaccess /media/xmlconnect/custom/*
app/bootstrap.php !/media/xmlconnect/custom/ok.gif
app/locale/en_US/
app/Mage.php !/media/xmlconnect/original
/cron.php /media/xmlconnect/original/*
cron.sh !/media/xmlconnect/original/ok.gif
dev/.htaccess
dev/tests/functional/ !/media/xmlconnect/system
downloader/ /media/xmlconnect/system/*
errors/ !/media/xmlconnect/system/ok.gif
favicon.ico
/get.php /var/*
includes/ !/var/.htaccess
/index.php
index.php.sample !/var/package
/install.php /var/package/*
js/blank.html !/var/package/*.xml
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/
...@@ -8,5 +8,5 @@ dependency-reduced-pom.xml ...@@ -8,5 +8,5 @@ dependency-reduced-pom.xml
buildNumber.properties buildNumber.properties
.mvn/timing.properties .mvn/timing.properties
# Exclude maven wrapper # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
!/.mvn/wrapper/maven-wrapper.jar !/.mvn/wrapper/maven-wrapper.jar
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
logs logs
*.log *.log
npm-debug.log* npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data # Runtime data
pids pids
...@@ -21,6 +23,9 @@ coverage ...@@ -21,6 +23,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
...@@ -28,8 +33,11 @@ coverage ...@@ -28,8 +33,11 @@ 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
...@@ -46,3 +54,6 @@ jspm_packages ...@@ -46,3 +54,6 @@ jspm_packages
# Yarn Integrity file # Yarn Integrity file
.yarn-integrity .yarn-integrity
# dotenv environment variables file
.env
...@@ -19,7 +19,8 @@ xcuserdata/ ...@@ -19,7 +19,8 @@ xcuserdata/
## Other ## Other
*.moved-aside *.moved-aside
*.xcuserstate *.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
...@@ -44,10 +45,10 @@ Carthage/Build ...@@ -44,10 +45,10 @@ Carthage/Build
# fastlane # fastlane
# #
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed. # screenshots whenever they are needed.
# For more information about the recommended setup visit: # For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md # https://docs.fastlane.tools/best-practices/source-control/#source-control
fastlane/report.xml fastlane/report.xml
fastlane/Preview.html fastlane/Preview.html
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
/META.json /META.json
/MYMETA.* /MYMETA.*
*.o *.o
*.pm.tdy
*.bs *.bs
# Devel::Cover # Devel::Cover
......
...@@ -5,6 +5,7 @@ bin/ ...@@ -5,6 +5,7 @@ bin/
/lib/ /lib/
/logs/ /logs/
/modules /modules
/project/project
/project/target /project/target
/target /target
tmp/ tmp/
......
# Dependencies
.psci_modules
bower_components
node_modules
# Generated files
.psci
output
...@@ -8,7 +8,6 @@ __pycache__/ ...@@ -8,7 +8,6 @@ __pycache__/
# Distribution / packaging # Distribution / packaging
.Python .Python
env/
build/ build/
develop-eggs/ develop-eggs/
dist/ dist/
...@@ -43,7 +42,7 @@ htmlcov/ ...@@ -43,7 +42,7 @@ htmlcov/
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover *.cover
.hypothesis/ .hypothesis/
# Translations # Translations
...@@ -76,16 +75,25 @@ target/ ...@@ -76,16 +75,25 @@ target/
# celery beat schedule file # celery beat schedule file
celerybeat-schedule celerybeat-schedule
# dotenv # SageMath parsed files
.env *.sage.py
# virtualenv # Environments
.venv/ .env
.venv
env/
venv/ venv/
ENV/ ENV/
# Spyder project settings # Spyder project settings
.spyderproject .spyderproject
.spyproject
# Rope project settings # Rope project settings
.ropeproject .ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
...@@ -12,6 +12,9 @@ ...@@ -12,6 +12,9 @@
# Qt-es # Qt-es
object_script.*.Release
object_script.*.Debug
*_plugin_import.cpp
/.qmake.cache /.qmake.cache
/.qmake.stash /.qmake.stash
*.pro.user *.pro.user
...@@ -20,11 +23,17 @@ ...@@ -20,11 +23,17 @@
*.qbs.user.* *.qbs.user.*
*.moc *.moc
moc_*.cpp moc_*.cpp
moc_*.h
qrc_*.cpp qrc_*.cpp
ui_*.h ui_*.h
Makefile* Makefile*
*build-* *build-*
# Qt unit tests
target_wrapper.*
# QtCreator # QtCreator
*.autosave *.autosave
......
...@@ -53,6 +53,11 @@ high quality, we request that contributions adhere to the following guidelines. ...@@ -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 you’re making, In general, the more you can do to help us understand the change you’re making,
the more likely we’ll be to accept your contribution quickly. the more likely we’ll 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 can’t list every tool that ever existed. Please also understand that we can’t 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
......
...@@ -8,7 +8,7 @@ capybara-*.html ...@@ -8,7 +8,7 @@ capybara-*.html
/public/system /public/system
/coverage/ /coverage/
/spec/tmp /spec/tmp
**.orig *.orig
rerun.txt rerun.txt
pickle-email-*.html pickle-email-*.html
......
*.class *.class
*.log *.log
# sbt specific
.cache
.history
.lib/
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
# Scala-IDE specific
.scala_dependencies
.worksheet
# ENSIME specific
.ensime_cache/
.ensime
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# the misuse of the repository as backup replacement. # the misuse of the repository as backup replacement.
# 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 !/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/
...@@ -22,6 +22,6 @@ ...@@ -22,6 +22,6 @@
# Logs files can safely be ignored. # Logs files can safely be ignored.
*.log *.log
# Ignore the new upload directories. # Ignore the new upload directories.
/upload/ /upload/*
!/upload/index.html !/upload/index.html
/upload_backup/ /upload_backup/
...@@ -19,7 +19,8 @@ xcuserdata/ ...@@ -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 ...@@ -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
...@@ -57,7 +59,7 @@ Carthage/Build ...@@ -57,7 +59,7 @@ Carthage/Build
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed. # screenshots whenever they are needed.
# For more information about the recommended setup visit: # For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md # https://docs.fastlane.tools/best-practices/source-control/#source-control
fastlane/report.xml fastlane/report.xml
fastlane/Preview.html fastlane/Preview.html
......
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
/bin/* /bin/*
!bin/console !bin/console
!bin/symfony_requirements !bin/symfony_requirements
/vendor/
# Assets and user uploads # Assets and user uploads
/web/bundles/ /web/bundles/
...@@ -38,8 +37,5 @@ ...@@ -38,8 +37,5 @@
# Build data # Build data
/build/ /build/
# Composer PHAR
/composer.phar
# Backup entities generated with doctrine:generate:entities command # Backup entities generated with doctrine:generate:entities command
**/Entity/*~ **/Entity/*~
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
*.blg *.blg
*-blx.aux *-blx.aux
*-blx.bib *-blx.bib
*.brf
*.run.xml *.run.xml
## Build tool auxiliary files: ## Build tool auxiliary files:
...@@ -77,8 +76,6 @@ acs-*.bib ...@@ -77,8 +76,6 @@ acs-*.bib
*.t[1-9] *.t[1-9]
*.t[1-9][0-9] *.t[1-9][0-9]
*.tfm *.tfm
*.[1-9]
*.[1-9][0-9]
#(r)(e)ledmac/(r)(e)ledpar #(r)(e)ledmac/(r)(e)ledpar
*.end *.end
...@@ -134,6 +131,9 @@ acs-*.bib ...@@ -134,6 +131,9 @@ acs-*.bib
*.mlf *.mlf
*.mlt *.mlt
*.mtc[0-9]* *.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted # minted
_minted* _minted*
...@@ -142,15 +142,15 @@ _minted* ...@@ -142,15 +142,15 @@ _minted*
# morewrites # morewrites
*.mw *.mw
# mylatexformat
*.fmt
# nomencl # nomencl
*.nlo *.nlo
# pax # pax
*.pax *.pax
# pdfpcnotes
*.pdfpc
# sagetex # sagetex
*.sagetex.sage *.sagetex.sage
*.sagetex.py *.sagetex.py
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
/[Bb]uilds/ /[Bb]uilds/
/Assets/AssetStoreTools* /Assets/AssetStoreTools*
# Visual Studio 2015 cache directory
/.vs/
# Autogenerated VS/MD/Consulo solution and project files # Autogenerated VS/MD/Consulo solution and project files
ExportedObj/ ExportedObj/
.consulo/ .consulo/
...@@ -20,7 +23,6 @@ ExportedObj/ ...@@ -20,7 +23,6 @@ ExportedObj/
*.svd *.svd
*.pdb *.pdb
# Unity3D generated meta files # Unity3D generated meta files
*.pidb.meta *.pidb.meta
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
# 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
...@@ -53,9 +54,17 @@ Binaries/* ...@@ -53,9 +54,17 @@ Binaries/*
# Builds # Builds
Build/* Build/*
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
!Build/*/
Build/*/**
!Build/*/PakBlacklist*.txt
# 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/*
......
...@@ -42,6 +42,9 @@ TestResult.xml ...@@ -42,6 +42,9 @@ TestResult.xml
[Rr]eleasePS/ [Rr]eleasePS/
dlldata.c dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET Core # .NET Core
project.lock.json project.lock.json
project.fragment.lock.json project.fragment.lock.json
...@@ -166,7 +169,7 @@ PublishScripts/ ...@@ -166,7 +169,7 @@ PublishScripts/
!**/packages/build/ !**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed # Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config #!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files # NuGet v3's project.json files produces more ignorable files
*.nuget.props *.nuget.props
*.nuget.targets *.nuget.targets
...@@ -183,6 +186,7 @@ AppPackages/ ...@@ -183,6 +186,7 @@ AppPackages/
BundleArtifacts/ BundleArtifacts/
Package.StoreAssociation.xml Package.StoreAssociation.xml
_pkginfo.txt _pkginfo.txt
*.appx
# Visual Studio cache files # Visual Studio cache files
# files ending in .cache can be ignored # files ending in .cache can be ignored
...@@ -199,7 +203,6 @@ ClientBin/ ...@@ -199,7 +203,6 @@ ClientBin/
*.jfm *.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
...@@ -220,6 +223,7 @@ UpgradeLog*.htm ...@@ -220,6 +223,7 @@ UpgradeLog*.htm
# SQL Server files # SQL Server files
*.mdf *.mdf
*.ldf *.ldf
*.ndf
# Business Intelligence projects # Business Intelligence projects
*.rdl.data *.rdl.data
...@@ -234,6 +238,10 @@ FakesAssemblies/ ...@@ -234,6 +238,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
...@@ -275,4 +283,13 @@ __pycache__/ ...@@ -275,4 +283,13 @@ __pycache__/
# !tools/packages.config # !tools/packages.config
# Tabs Studio # Tabs Studio
*.tss *.tss
\ No newline at end of file
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# 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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册