Permalink
Please sign in to comment.
Showing
with
351 additions
and 71 deletions.
- +4 −0 Autotools.gitignore
- +1 −1 Composer.gitignore
- +17 −8 Dart.gitignore
- +9 −1 Delphi.gitignore
- +1 −1 Drupal.gitignore
- +8 −0 Eagle.gitignore
- +1 −0 Elixir.gitignore
- +5 −0 Elm.gitignore
- +10 −0 Global/Calabash.gitignore
- +15 −4 Global/Eclipse.gitignore
- +1 −1 Global/EiffelStudio.gitignore
- +6 −0 Global/Emacs.gitignore
- +15 −20 Global/JetBrains.gitignore
- +3 −0 Global/Linux.gitignore
- +3 −0 Global/Matlab.gitignore
- +3 −0 Global/MicrosoftOffice.gitignore
- +0 −1 Global/NetBeans.gitignore
- +3 −1 Global/Vim.gitignore
- +2 −0 Global/VirtualEnv.gitignore
- +4 −4 Global/Xcode.gitignore
- +10 −0 Global/XilinxISE.gitignore
- +3 −0 Gradle.gitignore
- +21 −0 Joomla.gitignore
- +1 −1 LICENSE
- +11 −1 Laravel.gitignore
- +6 −1 Node.gitignore
- +15 −6 Objective-C.gitignore
- +2 −0 OpenCart.gitignore
- +0 −1 PlayFramework.gitignore
- +9 −0 Python.gitignore
- +5 −1 Qt.gitignore
- +5 −2 Rails.gitignore
- +1 −1 Ruby.gitignore
- +4 −0 Rust.gitignore
- +24 −5 Swift.gitignore
- +3 −0 Symfony.gitignore
- +32 −3 TeX.gitignore
- +1 −1 Typo3.gitignore
- +5 −3 Umbraco.gitignore
- +9 −0 Unity.gitignore
- +59 −0 UnrealEngine.gitignore
- +14 −3 VisualStudio.gitignore
4
Autotools.gitignore
2
Composer.gitignore
25
Dart.gitignore
@@ -1,18 +1,27 @@ | ||
-# Don’t commit the following directories created by pub. | ||
+# See https://www.dartlang.org/tools/private-files.html | ||
+ | ||
+# Files and directories created by pub | ||
.buildlog | ||
+.packages | ||
+.project | ||
.pub/ | ||
build/ | ||
-packages | ||
-.packages | ||
+**/packages/ | ||
-# Or the files created by dart2js. | ||
+# 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 | ||
-*.js_ | ||
+*.part.js | ||
*.js.deps | ||
*.js.map | ||
+*.info.json | ||
-# Or the files created by dartdoc. | ||
-doc/ | ||
+# Directory created by dartdoc | ||
+doc/api/ | ||
-# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.) | ||
+# Don't commit pubspec lock file | ||
+# (Library packages only! Remove pattern if developing an application package) | ||
pubspec.lock |
10
Delphi.gitignore
2
Drupal.gitignore
8
Eagle.gitignore
1
Elixir.gitignore
@@ -1,4 +1,5 @@ | ||
/_build | ||
+/cover | ||
/deps | ||
erl_crash.dump | ||
*.ez |
5
Elm.gitignore
@@ -0,0 +1,5 @@ | ||
+# elm-package generated files | ||
+elm-package.json | ||
+elm-stuff/ | ||
+# elm-repl generated files | ||
+repl-temp-* |
10
Global/Calabash.gitignore
@@ -0,0 +1,10 @@ | ||
+# Calabash / Cucumber | ||
+rerun/ | ||
+reports/ | ||
+screenshots/ | ||
+screenshot*.png | ||
+test-servers/ | ||
+ | ||
+# bundler | ||
+.bundle | ||
+vendor |
19
Global/Eclipse.gitignore
2
Global/EiffelStudio.gitignore
@@ -1,2 +1,2 @@ | ||
-# The compilation directoy | ||
+# The compilation directory | ||
EIFGENs |
6
Global/Emacs.gitignore
35
Global/JetBrains.gitignore
3
Global/Linux.gitignore
3
Global/Matlab.gitignore
3
Global/MicrosoftOffice.gitignore
1
Global/NetBeans.gitignore
4
Global/Vim.gitignore
@@ -1,6 +1,8 @@ | ||
+# swap | ||
[._]*.s[a-w][a-z] | ||
[._]s[a-w][a-z] | ||
-*.un~ | ||
+# session | ||
Session.vim | ||
+# temporary | ||
.netrwhist | ||
*~ |
2
Global/VirtualEnv.gitignore
8
Global/Xcode.gitignore
10
Global/XilinxISE.gitignore
3
Gradle.gitignore
21
Joomla.gitignore
2
LICENSE
12
Laravel.gitignore
@@ -1,4 +1,14 @@ | ||
-/bootstrap/compiled.php | ||
+vendor/ | ||
+node_modules/ | ||
+ | ||
+# Laravel 4 specific | ||
+bootstrap/compiled.php | ||
+app/storage/ | ||
+ | ||
+# Laravel 5 & Lumen specific | ||
+bootstrap/cache/ | ||
+storage/ | ||
.env.*.php | ||
.env.php | ||
.env | ||
+.env.example |
7
Node.gitignore
21
Objective-C.gitignore
2
OpenCart.gitignore
1
PlayFramework.gitignore
9
Python.gitignore
6
Qt.gitignore
7
Rails.gitignore
2
Ruby.gitignore
4
Rust.gitignore
29
Swift.gitignore
3
Symfony.gitignore
35
TeX.gitignore
2
Typo3.gitignore
8
Umbraco.gitignore
9
Unity.gitignore
59
UnrealEngine.gitignore
@@ -0,0 +1,59 @@ | ||
+# Compiled Object files | ||
+*.slo | ||
+*.lo | ||
+*.o | ||
+*.obj | ||
+ | ||
+# Precompiled Headers | ||
+*.gch | ||
+*.pch | ||
+ | ||
+# Compiled Dynamic libraries | ||
+*.so | ||
+*.dylib | ||
+*.dll | ||
+ | ||
+# Fortran module files | ||
+*.mod | ||
+ | ||
+# Compiled Static libraries | ||
+*.lai | ||
+*.la | ||
+*.a | ||
+*.lib | ||
+ | ||
+# Executables | ||
+*.exe | ||
+*.out | ||
+*.app | ||
+*.ipa | ||
+ | ||
+# These project files can be generated by the engine | ||
+*.xcodeproj | ||
+*.sln | ||
+*.suo | ||
+*.opensdf | ||
+*.sdf | ||
+*.VC.opendb | ||
+ | ||
+# Precompiled Assets | ||
+SourceArt/**/*.png | ||
+SourceArt/**/*.tga | ||
+ | ||
+# Binary Files | ||
+Binaries/* | ||
+ | ||
+# Builds | ||
+Build/* | ||
+ | ||
+# Don't ignore icon files in Build | ||
+!Build/**/*.ico | ||
+ | ||
+# Configuration files generated by the Editor | ||
+Saved/* | ||
+ | ||
+# Compiled source files for the engine to use | ||
+Intermediate/* | ||
+ | ||
+# Cache files for the editor to use | ||
+DerivedDataCache/* |
17
VisualStudio.gitignore
0 comments on commit
e9e59f2