|
1501
|
1 # ~~~
|
|
|
2 # Copyright 2018-2023 The Khronos Group Inc.
|
|
|
3 # Copyright 2018-2023 Valve Corporation
|
|
|
4 # Copyright 2018-2023 LunarG, Inc.
|
|
|
5 #
|
|
|
6 # SPDX-License-Identifier: Apache-2.0
|
|
|
7 # ~~~
|
|
|
8
|
|
|
9 # See https://git-scm.com/docs/gitattributes
|
|
|
10 # See https://help.github.com/articles/dealing-with-line-endings/
|
|
|
11
|
|
|
12 # Default behavior, if core.autocrlf is unset.
|
|
|
13 * text=auto
|
|
|
14
|
|
|
15 # Files to be converted to native line endings on checkout.
|
|
|
16 *.cpp text
|
|
|
17 *.h text
|
|
|
18
|
|
|
19 # Text files to always have CRLF (dos) line endings on checkout.
|
|
|
20 *.bat text eol=crlf
|
|
|
21
|
|
|
22 # Text files to always have LF (unix) line endings on checkout.
|
|
|
23 *.sh text eol=lf
|
|
|
24
|