forked from nvaccess/nvda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
86 lines (77 loc) · 1.58 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Try to ensure that po files in the repo does not include
# source code line numbers.
# Every person expected to commit po files should change their personal config file as described here:
# https://mail.gnome.org/archives/kupfer-list/2010-June/msg00002.html
*.po filter=cleanpo
eol=lf
* text=auto
# Files which should not be renormalized
*.dic -text
*.po -text
# Git files
.gitignore text
.gitattributes text
CODEOWNERS text
# Documentation files
*.md text
*.txt text
# Scripts
*.ps1 text
*.bat text
*.nsi text
# Config files
*.ini text
*.yml text
*.robot text
*.subst text
Doxyfile text
Makefile text
# Other files
*.def text
*.css text
*.svg text
# Source files
# ============
# Python Sources
*.py text diff=python
*.pyw text diff=python
*_sconscript text diff=python
sconscript text diff=python
sconstruct text diff=python
# C++ Sources
*.c text diff=c
*.cpp text diff=cpp
*.h text diff=c
*.idl text diff=c
*.acf text diff=c
# Binary files
# ============
# Python binary files
# *.db binary
# *.p binary
# *.pkl binary
# *.pickle binary
# *.pyc binary
# *.pyd binary
# *.pyo binary
# # Compiled C++ Object files
# *.slo binary
# *.lo binary
# *.o binary
# *.obj binary
# # Precompiled C++ Headers
# *.gch binary
# *.pch binary
# # Compiled C++ Dynamic libraries
# *.so binary
# *.dylib binary
# *.dll binary
# # Compiled C++ Static libraries
# *.lai binary
# *.la binary
# *.a binary
# *.lib binary
# # C++ Executables
# *.exe binary
# *.out binary
# *.app binary