forked from finos/legend-studio
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
20 lines (16 loc) · 741 Bytes
/
.gitattributes
File metadata and controls
20 lines (16 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This line does two things:
# - enable git's CRLF -> LF modification
# - tell git to guess whether files are text or binary
* text=auto eol=lf
# Mark as binary to prevent git from trying to merge it
*.ico binary
*.png binary
# Set the language for these files to json5 to ensure GitHub doesn't show the comments as errors
/.vscode/*.json linguist-language=jsonc
**/tsconfig.json linguist-language=jsonc
**/tsconfig.*.json linguist-language=jsonc
# Hide .yarn and docs from GitHub's language detection
/.yarn/** linguist-vendored
/docs/** linguist-documentation
# Mark generated content
/.changeset linguist-generated