Skip to content

Commit 92d28a9

Browse files
committed
🙈 Ajout .gitignore
0 parents  commit 92d28a9

1 file changed

Lines changed: 124 additions & 0 deletions

File tree

.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
# Compiled class file
2+
*.class
3+
4+
5+
#VSCode
6+
.project
7+
.classpath
8+
.vscode
9+
10+
# Log file
11+
*.log
12+
13+
# BlueJ files
14+
*.ctxt
15+
16+
# Mobile Tools for Java (J2ME)
17+
.mtj.tmp/
18+
19+
# Package Files #
20+
*.jar
21+
*.war
22+
*.nar
23+
*.ear
24+
*.zip
25+
*.tar.gz
26+
*.rar
27+
28+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
29+
hs_err_pid*
30+
31+
target/
32+
pom.xml.tag
33+
pom.xml.releaseBackup
34+
pom.xml.versionsBackup
35+
pom.xml.next
36+
release.properties
37+
dependency-reduced-pom.xml
38+
buildNumber.properties
39+
.mvn/timing.properties
40+
.idea/
41+
*.iml
42+
# CMake
43+
cmake-build-debug/
44+
45+
# Mongo Explorer plugin:
46+
.idea/**/mongoSettings.xml
47+
48+
## File-based project format:
49+
*.iws
50+
51+
## Plugin-specific files:
52+
53+
# IntelliJ
54+
/out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# Crashlytics plugin (for Android Studio and IntelliJ)
66+
com_crashlytics_export_strings.xml
67+
crashlytics.properties
68+
crashlytics-build.properties
69+
fabric.properties
70+
71+
.metadata
72+
bin/
73+
tmp/
74+
*.tmp
75+
*.bak
76+
*.swp
77+
*~.nib
78+
local.properties
79+
.settings/
80+
.loadpath
81+
.recommenders
82+
83+
# External tool builders
84+
.externalToolBuilders/
85+
86+
# Locally stored "Eclipse launch configurations"
87+
*.launch
88+
89+
# PyDev specific (Python IDE for Eclipse)
90+
*.pydevproject
91+
92+
# CDT-specific (C/C++ Development Tooling)
93+
.cproject
94+
95+
# Java annotation processor (APT)
96+
.factorypath
97+
98+
# PDT-specific (PHP Development Tools)
99+
.buildpath
100+
101+
# sbteclipse plugin
102+
.target
103+
104+
# Tern plugin
105+
.tern-project
106+
107+
# TeXlipse plugin
108+
.texlipse
109+
110+
# STS (Spring Tool Suite)
111+
.springBeans
112+
113+
# Code Recommenders
114+
.recommenders/
115+
116+
# Scala IDE specific (Scala & Java development for Eclipse)
117+
.cache-main
118+
.scala_dependencies
119+
.worksheet
120+
121+
nbproject/private/
122+
build/
123+
124+
fichier.ics

0 commit comments

Comments
 (0)