File tree Expand file tree Collapse file tree 1 file changed +124
-0
lines changed Expand file tree Collapse file tree 1 file changed +124
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,127 @@ coverage
44dist
55_book
66.DS_Store
7+
8+ # https://raw.githubusercontent.com/mraible/infoq-mini-book/master/.gitignore
9+ # #####################
10+ # Project Specific
11+ # #####################
12+ /src /main /webapp /dist
13+
14+ # #####################
15+ # Node
16+ # #####################
17+ /node_modules /**
18+
19+ # #####################
20+ # Eclipse
21+ # #####################
22+ * .pydevproject
23+ .project
24+ .metadata
25+ /bin /**
26+ /tmp /**
27+ /tmp /** /*
28+ * .tmp
29+ * .bak
30+ * .swp
31+ * ~.nib
32+ local.properties
33+ .classpath
34+ .settings /**
35+ .loadpath
36+
37+ # External tool builders
38+ .externalToolBuilders /**
39+
40+ # Locally stored "Eclipse launch configurations"
41+ * .launch
42+
43+ # CDT-specific
44+ .cproject
45+
46+ # PDT-specific
47+ .buildpath
48+
49+ # #####################
50+ # Intellij
51+ # #####################
52+ .idea /**
53+ * .iml
54+ * .iws
55+ * .ipr
56+ * .ids
57+ * .orig
58+
59+ # #####################
60+ # Maven
61+ # #####################
62+ /log /**
63+ /target /**
64+
65+ # #####################
66+ # Gradle
67+ # #####################
68+ .gradle /**
69+
70+ # #####################
71+ # Ruby
72+ # #####################
73+ /.bundle /
74+ /Gemfile.lock
75+
76+ # #####################
77+ # Package Files
78+ # #####################
79+ * .jar
80+ * .war
81+ * .ear
82+ * .db
83+
84+ # #####################
85+ # Windows
86+ # #####################
87+ # Windows image file caches
88+ Thumbs.db
89+
90+ # Folder config file
91+ Desktop.ini
92+
93+ # #####################
94+ # Mac OSX
95+ # #####################
96+ .DS_Store
97+ .svn
98+
99+ # Thumbnails
100+ ._ *
101+
102+ # Files that might appear on external disk
103+ .Spotlight-V100
104+ .Trashes
105+
106+ # #####################
107+ # Directories
108+ # #####################
109+ /asciidoctor-pdf /
110+ /build /**
111+ /bin /**
112+ /deploy /**
113+
114+ # #####################
115+ # Logs
116+ # #####################
117+ * .log
118+
119+ # #####################
120+ # Others
121+ # #####################
122+ * .class
123+ * . * ~
124+ * ~
125+ .merge_file *
126+
127+ # #####################
128+ # Gradle Wrapper
129+ # #####################
130+ ! gradle /wrapper /gradle-wrapper.jar
You can’t perform that action at this time.
0 commit comments