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
|
# SPDX-FileCopyrightText: David Fritzsche
# SPDX-License-Identifier: CC0-1.0
# Git attributes
#
# See
# - git help attributes
# - https://git-scm.com/docs/gitattributes
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
# Pure text files: Use LF in repo and checkout
*.c text eol=lf
*.cfg text eol=lf
*.in text eol=lf
*.ini text eol=lf
*.md text eol=lf
*.proto text eol=lf
*.puml text eol=lf
*.py text eol=lf
*.rst text eol=lf
*.sh text eol=lf
*.txt text eol=lf
*.typed text eol=lf
*.yml text eol=lf
.editorconfig text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
.pylintrc text eol=lf
Jenkinsfile* text eol=lf
Pipfile* text eol=lf
pylintrc text eol=lf
# Binary/DOS files: Don't treat as text
*.bat -text
*.desc -text
*.exe -text
*.inv -text
*.png -text
|