File tree Expand file tree Collapse file tree 4 files changed +127
-0
lines changed Expand file tree Collapse file tree 4 files changed +127
-0
lines changed Original file line number Diff line number Diff line change 1+ # EditorConfig is awesome: http://EditorConfig.org
2+
3+ # top-most EditorConfig file
4+ root = true
5+
6+ # Unix-style newlines with a newline ending every file
7+ [* ]
8+ end_of_line = lf
9+ insert_final_newline = true
10+ charset = utf-8
11+ indent_style = tab
12+ indent_size = 4
Original file line number Diff line number Diff line change 1+ # Handle line endings automatically for files detected as text
2+ # and leave all files detected as binary untouched.
3+ * text =auto eol =lf
4+
5+ * .bat text eol =crlf
6+
7+ #
8+ # The above will handle all files NOT found below
9+ #
10+ # These files are text and should be normalized (Convert crlf => lf)
11+ * .css text
12+ * .df text
13+ * .htm text
14+ * .html text
15+ * .java text
16+ * .js text
17+ * .json text
18+ * .jsp text
19+ * .jspf text
20+ * .properties text
21+ * .sh text
22+ * .sql text
23+ * .svg text
24+ * .tld text
25+ * .txt text
26+ * .xml text
27+
28+ # These files are binary and should be left untouched
29+ # (binary is a macro for -text -diff)
30+ * .class binary
31+ * .dll binary
32+ * .ear binary
33+ * .gif binary
34+ * .ico binary
35+ * .jar binary
36+ * .jpg binary
37+ * .jpeg binary
38+ * .png binary
39+ * .so binary
40+ * .war binary
Original file line number Diff line number Diff line change 1+ # Build #
2+ # ########
3+ MANIFEST.MF
4+ dependency-reduced-pom.xml
5+ generated
6+
7+ # Compiled #
8+ # ###########
9+ bin
10+ build
11+ dist
12+ lib
13+ out
14+ run
15+ classes /
16+ target
17+ * .com
18+ * .class
19+ * .dll
20+ * .exe
21+ * .o
22+ * .so
23+
24+ # Databases #
25+ # ############
26+ * .db
27+ * .sql
28+ * .sqlite
29+
30+ # Packages #
31+ # ###########
32+ * .7z
33+ * .dmg
34+ * .gz
35+ * .iso
36+ * .rar
37+ * .tar
38+ * .zip
39+
40+ # Repository #
41+ # #############
42+ .git
43+
44+ # Logging #
45+ # ##########
46+ /logs
47+ * .log
48+
49+ # Misc #
50+ # #######
51+ * .bak
52+
53+ # System #
54+ # #########
55+ .DS_Store
56+ ehthumbs.db
57+ Thumbs.db
58+
59+ # Project #
60+ # ##########
61+ .classpath
62+ .externalToolBuilders
63+ .gradle
64+ .idea
65+ .project
66+ .settings
67+ eclipse
68+ nbproject
69+ atlassian-ide-plugin.xml
70+ build.xml
71+ nb-configuration.xml
72+ * .iml
73+ * .ipr
74+ * .iws
Original file line number Diff line number Diff line change 1+ test
You can’t perform that action at this time.
0 commit comments