File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -139,3 +139,5 @@ build
139
139
140
140
# IntelliJ Idea
141
141
.idea
142
+
143
+ plugins /** /.creds.json
You can’t perform that action at this time.
0 commit comments