Skip to content

Commit ebeaf40

Browse files
authored
Merge branch 'master' into tabs-studio
2 parents f50f39c + 2a2e34e commit ebeaf40

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+302
-288
lines changed

Android.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,19 @@ captures/
3737
.idea/workspace.xml
3838
.idea/tasks.xml
3939
.idea/gradle.xml
40+
.idea/dictionaries
4041
.idea/libraries
4142

4243
# Keystore files
4344
*.jks
4445

4546
# External native build folder generated in Android Studio 2.2 and later
4647
.externalNativeBuild
48+
49+
# Google Services (e.g. APIs or Firebase)
50+
google-services.json
51+
52+
# Freeline
53+
freeline.py
54+
freeline/
55+
freeline_project_description.json

C.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
# Kernel Module Compile Results
4646
*.mod*
4747
*.cmd
48+
.tmp_versions/
4849
modules.order
4950
Module.symvers
5051
Mkfile.old

CONTRIBUTING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines.
2828
In general, the more you can do to help us understand the change you’re making,
2929
the more likely we’ll be to accept your contribution quickly.
3030

31+
If a template is mostly a list of files installed by a particular version of
32+
some software (e.g. a PHP framework) then it's brittle and probably no more
33+
helpful than a simple `ls`. If it's not possible to curate a small set of
34+
useful rules, then the template might not be a good fit for this collection.
35+
3136
Please also understand that we can’t list every tool that ever existed.
3237
Our aim is to curate a collection of the *most common and helpful* templates,
3338
not to make sure we cover every project possible. If we choose not to

CodeIgniter.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,9 @@ user_guide_src/build/*
99
user_guide_src/cilexer/build/*
1010
user_guide_src/cilexer/dist/*
1111
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/

Dart.gitignore

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,12 @@
11
# See https://www.dartlang.org/tools/private-files.html
22

33
# Files and directories created by pub
4-
5-
# SDK 1.20 and later (no longer creates packages directories)
64
.packages
75
.pub/
86
build/
9-
10-
# Older SDK versions
11-
# (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20)
12-
.project
13-
.buildlog
14-
**/packages/
15-
16-
17-
# Files created by dart2js
18-
# (Most Dart developers will use pub build to compile Dart, use/modify these
19-
# rules if you intend to use dart2js directly
20-
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
21-
# differentiate from explicit Javascript files)
22-
*.dart.js
23-
*.part.js
24-
*.js.deps
25-
*.js.map
26-
*.info.json
7+
# If you're building an application, you may want to check-in your pubspec.lock
8+
pubspec.lock
279

2810
# Directory created by dartdoc
11+
# If you don't generate documentation locally you can remove this line.
2912
doc/api/
30-
31-
# Don't commit pubspec lock file
32-
# (Library packages only! Remove pattern if developing an application package)
33-
pubspec.lock

Global/Archives.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55
*.rar
66
*.zip
77
*.gz
8+
*.tgz
89
*.bzip
910
*.bz2
1011
*.xz
1112
*.lzma
1213
*.cab
1314

14-
#packing-only formats
15+
# Packing-only formats
1516
*.iso
1617
*.tar
1718

18-
#package management formats
19+
# Package management formats
1920
*.dmg
2021
*.xpi
2122
*.gem

Global/Eclipse.gitignore

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ local.properties
1111
.loadpath
1212
.recommenders
1313

14-
# Eclipse Core
15-
.project
16-
1714
# External tool builders
1815
.externalToolBuilders/
1916

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

29-
# JDT-specific (Eclipse Java Development Tools)
30-
.classpath
31-
3226
# Java annotation processor (APT)
3327
.factorypath
3428

@@ -49,3 +43,8 @@ local.properties
4943

5044
# Code Recommenders
5145
.recommenders/
46+
47+
# Scala IDE specific (Scala & Java development for Eclipse)
48+
.cache-main
49+
.scala_dependencies
50+
.worksheet

Global/JEnv.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# JEnv local Java version configuration file
2+
.java-version
3+
4+
# Used by previous versions of JEnv
5+
.jenv-version

Global/JetBrains.gitignore

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,28 @@
22
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
33

44
# User-specific stuff:
5-
.idea/workspace.xml
6-
.idea/tasks.xml
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/dictionaries
78

89
# Sensitive or high-churn files:
9-
.idea/dataSources/
10-
.idea/dataSources.ids
11-
.idea/dataSources.xml
12-
.idea/dataSources.local.xml
13-
.idea/sqlDataSources.xml
14-
.idea/dynamic.xml
15-
.idea/uiDesigner.xml
10+
.idea/**/dataSources/
11+
.idea/**/dataSources.ids
12+
.idea/**/dataSources.xml
13+
.idea/**/dataSources.local.xml
14+
.idea/**/sqlDataSources.xml
15+
.idea/**/dynamic.xml
16+
.idea/**/uiDesigner.xml
1617

1718
# Gradle:
18-
.idea/gradle.xml
19-
.idea/libraries
19+
.idea/**/gradle.xml
20+
.idea/**/libraries
21+
22+
# CMake
23+
cmake-build-debug/
2024

2125
# Mongo Explorer plugin:
22-
.idea/mongoSettings.xml
26+
.idea/**/mongoSettings.xml
2327

2428
## File-based project format:
2529
*.iws
@@ -35,6 +39,9 @@
3539
# JIRA plugin
3640
atlassian-ide-plugin.xml
3741

42+
# Cursive Clojure plugin
43+
.idea/replstate.xml
44+
3845
# Crashlytics plugin (for Android Studio and IntelliJ)
3946
com_crashlytics_export_strings.xml
4047
crashlytics.properties

Global/Matlab.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ slprj/
1717

1818
# Session info
1919
octave-workspace
20+
21+
# Simulink autosave extension
22+
.autosave

0 commit comments

Comments
 (0)