Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Commit 1fc5400

Browse files
author
Krystian Panek
committedAug 24, 2020
Initial commit
0 parents  commit 1fc5400

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2473
-0
lines changed
 

‎.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
[*]
5+
insert_final_newline = true
6+
7+
[*.js]
8+
indent_style = space
9+
indent_size = 2
10+
11+
[*.xml]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.{scss,less,css}]
16+
indent_style = space
17+
indent_size = 2
18+
19+
[*.{kt,java,jsp}]
20+
indent_style = space
21+
indent_size = 2

‎.gitattributes

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
# The above will handle all files NOT found below
6+
#
7+
# These files are text and should be normalized (Convert crlf => lf)
8+
*.css text
9+
*.df text
10+
*.htm text
11+
*.html text
12+
*.java text
13+
*.kt text
14+
*.js text
15+
*.json text
16+
*.jsp text
17+
*.jspf text
18+
*.jspx text
19+
*.properties text
20+
*.sh text
21+
*.tld text
22+
*.txt text
23+
*.tag text
24+
*.tagx text
25+
*.xml text
26+
*.yml 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

0 commit comments

Comments
 (0)
This repository has been archived.