-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.gitattributes
More file actions
27 lines (21 loc) · 842 Bytes
/
.gitattributes
File metadata and controls
27 lines (21 loc) · 842 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
# Handle line endings automatically for files detected as text and leave all
# files detected as binary untouched.
* text=auto
# Shell scripts used in Linux containers must stay LF in the working tree.
/docker/*.sh text eol=lf
/docker/ut-run-tests text eol=lf
/docker/xvfb text eol=lf
/sbin/*.sh text eol=lf
# Files and directories with the attribute export-ignore won’t be added to
# archive files. See http://git-scm.com/docs/gitattributes for details.
# Git
/.github/ export-ignore
/.gitignore export-ignore
# Coverage
/.coveragerc export-ignore
/codecov.yml export-ignore
# Linting
/.flake8 export-ignore
# Tests
/tests/ export-ignore
/unittesting.json export-ignore