Skip to content

Commit 60b080d

Browse files
committed
initial
0 parents  commit 60b080d

File tree

1 file changed

+112
-0
lines changed

1 file changed

+112
-0
lines changed

.gitignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Created by http://www.gitignore.io
2+
3+
### vim ###
4+
[._]*.s[a-w][a-z]
5+
[._]s[a-w][a-z]
6+
*.un~
7+
Session.vim
8+
.netrwhist
9+
*~
10+
11+
12+
### Eclipse ###
13+
*.pydevproject
14+
.metadata
15+
.gradle
16+
bin/
17+
tmp/
18+
*.tmp
19+
*.bak
20+
*.swp
21+
*~.nib
22+
local.properties
23+
.settings/
24+
.loadpath
25+
.project
26+
.classpath
27+
28+
# External tool builders
29+
.externalToolBuilders/
30+
31+
# Locally stored "Eclipse launch configurations"
32+
*.launch
33+
34+
# CDT-specific
35+
.cproject
36+
37+
# PDT-specific
38+
.buildpath
39+
40+
# sbteclipse plugin
41+
.target
42+
43+
# TeXlipse plugin
44+
.texlipse
45+
46+
47+
### Scala ###
48+
*.class
49+
*.log
50+
51+
# sbt specific
52+
.cache/
53+
.history/
54+
.lib/
55+
dist/*
56+
target/
57+
lib_managed/
58+
src_managed/
59+
project/boot/
60+
project/plugins/project/
61+
62+
# Scala-IDE specific
63+
.scala_dependencies
64+
.worksheet
65+
66+
67+
### Intellij ###
68+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
69+
70+
## Directory-based project format
71+
.idea/
72+
/*.iml
73+
# if you remove the above rule, at least ignore user-specific stuff:
74+
# .idea/workspace.xml
75+
# .idea/tasks.xml
76+
# .idea/dictionaries
77+
# and these sensitive or high-churn files:
78+
# .idea/dataSources.ids
79+
# .idea/dataSources.xml
80+
# .idea/sqlDataSources.xml
81+
# .idea/dynamic.xml
82+
# and, if using gradle::
83+
# .idea/gradle.xml
84+
# .idea/libraries
85+
86+
## File-based project format
87+
*.ipr
88+
*.iws
89+
90+
## Additional for IntelliJ
91+
out/
92+
93+
# generated by mpeltonen/sbt-idea plugin
94+
.idea_modules/
95+
96+
# generated by JIRA plugin
97+
atlassian-ide-plugin.xml
98+
99+
# generated by Crashlytics plugin (for Android Studio and Intellij)
100+
com_crashlytics_export_strings.xml
101+
102+
103+
### SBT ###
104+
# Simple Build Tool
105+
# http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control
106+
107+
target/
108+
lib_managed/
109+
src_managed/
110+
project/boot/
111+
.history
112+
.cache

0 commit comments

Comments
 (0)