forked from cenx1/msaccess-devops
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitattributes
27 lines (23 loc) · 1.18 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
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
###############################################################################
# Ensure that source files use CRLF for newlines, in case they are downloaded
# in a compressed archive directly from GitHub. (Otherwise class modules may
# not be imported correctly. See issue #150 for more details.)
###############################################################################
*.bas text eol=crlf
###############################################################################
# Clarify that the source language is VBA (Auto-detection not always accurate)
# https://github.com/github/linguist/blob/master/docs/overrides.md
###############################################################################
*.bas linguist-language=VBA
*.cls linguist-language=VBA
*.twin linguist-language=VBA
# Git files
*.gitattributes text
*.gitattributes linguist-language=gitattributes
# Ignore files (like .npmignore or .gitignore)
*.*ignore text
*.*ignore export-ignore