Skip to content

Commit

Permalink
Merge branch 'master' into tabs-studio
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey authored Jun 10, 2017
2 parents c42b529 + 9bdf41e commit 785d15f
Show file tree
Hide file tree
Showing 42 changed files with 302 additions and 288 deletions.
9 changes: 9 additions & 0 deletions Android.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,19 @@ captures/
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/dictionaries
.idea/libraries

# Keystore files
*.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
1 change: 1 addition & 0 deletions C.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
Expand Down
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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.
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
Expand Down
6 changes: 6 additions & 0 deletions CodeIgniter.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*

#codeigniter 3
application/logs/*
!application/logs/index.html
!application/logs/.htaccess
/vendor/
27 changes: 3 additions & 24 deletions Dart.gitignore
Original file line number Diff line number Diff line change
@@ -1,33 +1,12 @@
# See https://www.dartlang.org/tools/private-files.html

# Files and directories created by pub

# SDK 1.20 and later (no longer creates packages directories)
.packages
.pub/
build/

# Older SDK versions
# (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
# If you're building an application, you may want to check-in your pubspec.lock
pubspec.lock

# Directory created by dartdoc
# If you don't generate documentation locally you can remove this line.
doc/api/

# Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock
5 changes: 3 additions & 2 deletions Global/Archives.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@
*.rar
*.zip
*.gz
*.tgz
*.bzip
*.bz2
*.xz
*.lzma
*.cab

#packing-only formats
# Packing-only formats
*.iso
*.tar

#package management formats
# Package management formats
*.dmg
*.xpi
*.gem
Expand Down
11 changes: 5 additions & 6 deletions Global/Eclipse.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ local.properties
.loadpath
.recommenders

# Eclipse Core
.project

# External tool builders
.externalToolBuilders/

Expand All @@ -26,9 +23,6 @@ local.properties
# CDT-specific (C/C++ Development Tooling)
.cproject

# JDT-specific (Eclipse Java Development Tools)
.classpath

# Java annotation processor (APT)
.factorypath

Expand All @@ -49,3 +43,8 @@ local.properties

# Code Recommenders
.recommenders/

# Scala IDE specific (Scala & Java development for Eclipse)
.cache-main
.scala_dependencies
.worksheet
5 changes: 5 additions & 0 deletions Global/JEnv.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# JEnv local Java version configuration file
.java-version

# Used by previous versions of JEnv
.jenv-version
31 changes: 19 additions & 12 deletions Global/JetBrains.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,28 @@
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

# Sensitive or high-churn files:
.idea/dataSources/
.idea/dataSources.ids
.idea/dataSources.xml
.idea/dataSources.local.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

# Gradle:
.idea/gradle.xml
.idea/libraries
.idea/**/gradle.xml
.idea/**/libraries

# CMake
cmake-build-debug/

# Mongo Explorer plugin:
.idea/mongoSettings.xml
.idea/**/mongoSettings.xml

## File-based project format:
*.iws
Expand All @@ -35,6 +39,9 @@
# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
Expand Down
3 changes: 3 additions & 0 deletions Global/Matlab.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ slprj/

# Session info
octave-workspace

# Simulink autosave extension
.autosave
2 changes: 1 addition & 1 deletion Global/MicrosoftOffice.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
~$*.ppt*

# Visio autosave temporary files
*.~vsdx
*.~vsd*
3 changes: 3 additions & 0 deletions Global/SBT.gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Simple Build Tool
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control

dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
.history
.cache
.lib/
24 changes: 24 additions & 0 deletions Global/Stata.gitignore
Original file line number Diff line number Diff line change
@@ -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
10 changes: 5 additions & 5 deletions Global/SublimeText.gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# cache files for sublime text
# Cache files for Sublime Text
*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache

# workspace files are user-specific
# Workspace files are user-specific
*.sublime-workspace

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# Project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using Sublime Text
# *.sublime-project

# sftp configuration file
# SFTP configuration file
sftp-config.json

# Package control specific files
Expand Down
4 changes: 4 additions & 0 deletions Global/Vagrant.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# General
.vagrant/

# Log files (if you are creating logs in debug mode, uncomment this)
# *.logs
10 changes: 6 additions & 4 deletions Global/Vim.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# swap
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
# session

# Session
Session.vim
# temporary

# Temporary
.netrwhist
*~
# auto-generated tag files
# Auto-generated tag files
tags
3 changes: 3 additions & 0 deletions Global/Windows.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
Desktop.ini

Expand Down
52 changes: 26 additions & 26 deletions Global/macOS.gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# General
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
Expand Down
30 changes: 7 additions & 23 deletions Go.gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,14 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib

# 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
# Test binary, build with `go test -c`
*.test
*.prof

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# External packages folder
vendor/
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
Loading

0 comments on commit 785d15f

Please sign in to comment.