File: .gitattributes

package info (click to toggle)
sqlfluff 3.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,984 kB
  • sloc: python: 106,138; sql: 34,188; makefile: 52; sh: 8
file content (17 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# We'll let Git's auto-detection algorithm infer if a file is text. If it is,
# enforce LF line endings regardless of OS or git configurations.
* text=auto eol=lf

# Allow Batch files to be CRLF:
.bat text eol=crlf

# Isolate binary files in case the auto-detection algorithm fails and
# marks them as text files (which could brick them).
*.{png,jpg,jpeg,gif,webp,woff,woff2} binary

# Linguist was excluding our test suite from the repo language statistics
# and as a result the repo indicated that no SQL is present in the repo.
# Information on overrides can be found here:
# https://github.com/github/linguist/blob/master/docs/overrides.md
test/** linguist-vendored=false
*.sql linguist-language=SQL linguist-detectable