-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
27 lines (22 loc) · 1.06 KB
/
.gitattributes
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
# Custom attribute to mark ignored sources. Example:
# third-party sources, IDE files, data files used for unit tests, &etc.
[attr]noqa whitespace=-blank-at-eol,-blank-at-eof,-space-before-tab,-tab-in-indent,-indent-with-non-tab
# Custom attribute to mark microformat files (MD, RST, &etc.)
# to setup VCS conflict marker to be long enough to be distinctive
# from possible _header_ markup.
[attr]doc conflict-marker-size=79
# Custom attribute to mark Makefiles
[attr]makefile text=auto whitespace=-tab-in-indent
# Prevent some VCS related service files to be exported
.codespellrc export-ignore
.editorconfig export-ignore
.git* export-ignore
.mailmap export-ignore
.pre-commit-config.yaml export-ignore
# NOTE Keep project-specifics below
# NOTE Tabulation symbols prohibited for all text files by default
* text=auto whitespace=tab-in-indent
*.md doc
# ... 'cept `Makefile` of course
*.mk makefile
Makefile makefile