diff options
author | Pacien TRAN-GIRARD | 2015-10-10 10:39:03 +0200 |
---|---|---|
committer | Pacien TRAN-GIRARD | 2015-10-10 10:39:03 +0200 |
commit | 4453b77e0f24afa2aa8ce4eab9aca8c7e158fc49 (patch) | |
tree | 96275e2e7b5dda02a939b5485092670f369a33d3 /.gitignore | |
download | seam-stitcher-4453b77e0f24afa2aa8ce4eab9aca8c7e158fc49.tar.gz |
Bootstrap project
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..11b5d8a --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,110 @@ | |||
1 | # Created by .ignore support plugin (hsz.mobi) | ||
2 | ### Eclipse template | ||
3 | *.pydevproject | ||
4 | .metadata | ||
5 | .gradle | ||
6 | bin/ | ||
7 | tmp/ | ||
8 | *.tmp | ||
9 | *.bak | ||
10 | *.swp | ||
11 | *~.nib | ||
12 | local.properties | ||
13 | .settings/ | ||
14 | .loadpath | ||
15 | |||
16 | # Eclipse Core | ||
17 | .project | ||
18 | |||
19 | # External tool builders | ||
20 | .externalToolBuilders/ | ||
21 | |||
22 | # Locally stored "Eclipse launch configurations" | ||
23 | *.launch | ||
24 | |||
25 | # CDT-specific | ||
26 | .cproject | ||
27 | |||
28 | # JDT-specific (Eclipse Java Development Tools) | ||
29 | .classpath | ||
30 | |||
31 | # Java annotation processor (APT) | ||
32 | .factorypath | ||
33 | |||
34 | # PDT-specific | ||
35 | .buildpath | ||
36 | |||
37 | # sbteclipse plugin | ||
38 | .target | ||
39 | |||
40 | # TeXlipse plugin | ||
41 | .texlipse | ||
42 | ### Java template | ||
43 | *.class | ||
44 | |||
45 | # Mobile Tools for Java (J2ME) | ||
46 | .mtj.tmp/ | ||
47 | |||
48 | # Package Files # | ||
49 | *.jar | ||
50 | *.war | ||
51 | *.ear | ||
52 | |||
53 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
54 | hs_err_pid* | ||
55 | ### Linux template | ||
56 | *~ | ||
57 | |||
58 | # KDE directory preferences | ||
59 | .directory | ||
60 | |||
61 | # Linux trash folder which might appear on any partition or disk | ||
62 | .Trash-* | ||
63 | ### JetBrains template | ||
64 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio | ||
65 | |||
66 | *.iml | ||
67 | |||
68 | ## Directory-based project format: | ||
69 | .idea/ | ||
70 | # if you remove the above rule, at least ignore the following: | ||
71 | |||
72 | # User-specific stuff: | ||
73 | # .idea/workspace.xml | ||
74 | # .idea/tasks.xml | ||
75 | # .idea/dictionaries | ||
76 | |||
77 | # Sensitive or high-churn files: | ||
78 | # .idea/dataSources.ids | ||
79 | # .idea/dataSources.xml | ||
80 | # .idea/sqlDataSources.xml | ||
81 | # .idea/dynamic.xml | ||
82 | # .idea/uiDesigner.xml | ||
83 | |||
84 | # Gradle: | ||
85 | # .idea/gradle.xml | ||
86 | # .idea/libraries | ||
87 | |||
88 | # Mongo Explorer plugin: | ||
89 | # .idea/mongoSettings.xml | ||
90 | |||
91 | ## File-based project format: | ||
92 | *.ipr | ||
93 | *.iws | ||
94 | |||
95 | ## Plugin-specific files: | ||
96 | |||
97 | # IntelliJ | ||
98 | /out/ | ||
99 | |||
100 | # mpeltonen/sbt-idea plugin | ||
101 | .idea_modules/ | ||
102 | |||
103 | # JIRA plugin | ||
104 | atlassian-ide-plugin.xml | ||
105 | |||
106 | # Crashlytics plugin (for Android Studio and IntelliJ) | ||
107 | com_crashlytics_export_strings.xml | ||
108 | crashlytics.properties | ||
109 | crashlytics-build.properties | ||
110 | |||