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