-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
46 lines (39 loc) · 925 Bytes
/
Copy path.gitattributes
File metadata and controls
46 lines (39 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Normalize text files to LF in the repository for cross-platform consistency.
* text=auto eol=lf
# Source and config
*.py text eol=lf
*.pyi text eol=lf
*.g4 text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
*.toml text eol=lf
*.rc text eol=lf
.pylintrc text eol=lf
.coveragerc text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
# Batch corpus fixtures (stored as LF; parser joins lines with \n)
*.cmd text eol=lf
*.bat text eol=lf
# GitHub Actions
.github/** text eol=lf
# Version marker
VERSION text eol=lf
# ANTLR auxiliary output (gitignored; mark binary if present)
*.interp binary
*.tokens binary
# Mark committed generated parser output for GitHub linguist
generated/python/** linguist-generated
# Common binary assets
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.pdf binary