blob: 980b4bf4d3b67272b4ccd09c3734818f68a4f32d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# force C files to unix endings regardless of host platform
# for compatibility with IDO cc
*.c text eol=lf diff=c
*.h text eol=lf diff=c
# List text files in case git doesn't characterize correctly
*.s text
*.in text
*.js text
*.md text
*.py text diff=python
*.sh text
*.ld text
*.inc text
*.txt text
*.json text
*.yaml text
*.toml text
*.rs text diff=rust
|