Skip to content

Commit c35a7f4

Browse files
committed
added gitattributes to root
1 parent d6678f5 commit c35a7f4

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.gitattributes

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Declare files that will always have LF line endings on checkout.
2+
*.sh text eol=lf
3+
4+
# Denote all files that are truly binary and should not be modified.
5+
*.png binary
6+
*.jpg binary
7+
*.jpeg binary
8+
*.gif binary
9+
*.ico binary
10+
*.mov binary
11+
*.mp4 binary
12+
*.mp3 binary
13+
*.flv binary
14+
*.fla binary
15+
*.swf binary
16+
*.gz binary
17+
*.zip binary
18+
*.7z binary
19+
*.ttf binary
20+
*.eot binary
21+
*.woff binary
22+
*.woff2 binary
23+
24+
# Ignore cookbook folder for language statistics
25+
cookbook/** linguist-vendored
26+
docs/** linguist-vendored
27+
28+
# Treat package-lock.json and yarn.lock as binary to avoid merge conflicts
29+
package-lock.json binary
30+
yarn.lock binary
31+
32+
# Treat .env files as binary to avoid accidental commits of sensitive information
33+
*.env binary

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,5 @@ build
139139

140140
# IntelliJ Idea
141141
.idea
142+
143+
plugins/**/.creds.json

0 commit comments

Comments
 (0)