Browse Source

Initial commit

Louis Chauvet 3 years ago
commit
69b09afe86
3 changed files with 77 additions and 0 deletions
  1. 72
    0
      .gitignore
  2. 3
    0
      LICENSE
  3. 2
    0
      README.md

+ 72
- 0
.gitignore View File

@@ -0,0 +1,72 @@
1
+# ---> JetBrains
2
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
3
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4
+
5
+# User-specific stuff:
6
+.idea/**/workspace.xml
7
+.idea/**/tasks.xml
8
+.idea/dictionaries
9
+
10
+# Sensitive or high-churn files:
11
+.idea/**/dataSources/
12
+.idea/**/dataSources.ids
13
+.idea/**/dataSources.xml
14
+.idea/**/dataSources.local.xml
15
+.idea/**/sqlDataSources.xml
16
+.idea/**/dynamic.xml
17
+.idea/**/uiDesigner.xml
18
+
19
+# Gradle:
20
+.idea/**/gradle.xml
21
+.idea/**/libraries
22
+
23
+# Mongo Explorer plugin:
24
+.idea/**/mongoSettings.xml
25
+
26
+## File-based project format:
27
+*.iws
28
+
29
+## Plugin-specific files:
30
+
31
+# IntelliJ
32
+/out/
33
+
34
+# mpeltonen/sbt-idea plugin
35
+.idea_modules/
36
+
37
+# JIRA plugin
38
+atlassian-ide-plugin.xml
39
+
40
+# Cursive Clojure plugin
41
+.idea/replstate.xml
42
+
43
+# Crashlytics plugin (for Android Studio and IntelliJ)
44
+com_crashlytics_export_strings.xml
45
+crashlytics.properties
46
+crashlytics-build.properties
47
+fabric.properties
48
+
49
+# ---> Java
50
+# Compiled class file
51
+*.class
52
+
53
+# Log file
54
+*.log
55
+
56
+# BlueJ files
57
+*.ctxt
58
+
59
+# Mobile Tools for Java (J2ME)
60
+.mtj.tmp/
61
+
62
+# Package Files #
63
+*.jar
64
+*.war
65
+*.ear
66
+*.zip
67
+*.tar.gz
68
+*.rar
69
+
70
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
71
+hs_err_pid*
72
+

+ 3
- 0
LICENSE View File

@@ -0,0 +1,3 @@
1
+Copyright (C) 2006 by Rob Landley <rob@landley.net>
2
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
3
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+ 2
- 0
README.md View File

@@ -0,0 +1,2 @@
1
+# BE_graphes_poo
2
+

Loading…
Cancel
Save