Skip to content

Commit eb6e6aa

Browse files
authored
Merge a5810c7 into 6b4cf45
2 parents 6b4cf45 + a5810c7 commit eb6e6aa

3 files changed

Lines changed: 89 additions & 2 deletions

File tree

.gitattributes

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,86 @@
33
# Every person expected to commit po files should change their personal config file as described here:
44
# https://mail.gnome.org/archives/kupfer-list/2010-June/msg00002.html
55
*.po filter=cleanpo
6+
7+
eol=lf
8+
* text=auto
9+
10+
# Files which should not be renormalized
11+
*.t2t -text
12+
*.dic -text
13+
*.po -text
14+
15+
# Git files
16+
.gitignore text
17+
.gitattributes text
18+
CODEOWNERS text
19+
20+
# Documentation files
21+
*.md text
22+
*.txt text
23+
24+
# Scripts
25+
*.ps1 text
26+
*.bat text
27+
*.nsi text
28+
29+
# Config files
30+
*.ini text
31+
*.yml text
32+
*.robot text
33+
*.subst text
34+
Doxyfile text
35+
Makefile text
36+
*.t2tconf text
37+
38+
# Other files
39+
*.def text
40+
*.css text
41+
*.svg text
42+
43+
# Source files
44+
# ============
45+
# Python Sources
46+
*.py text diff=python
47+
*.pyw text diff=python
48+
*_sconscript text diff=python
49+
sconscript text diff=python
50+
sconstruct text diff=python
51+
# C++ Sources
52+
*.c text diff=c
53+
*.cpp text diff=cpp
54+
*.h text diff=c
55+
*.idl text diff=c
56+
*.acf text diff=c
57+
58+
# Binary files
59+
# ============
60+
# Python binary files
61+
# *.db binary
62+
# *.p binary
63+
# *.pkl binary
64+
# *.pickle binary
65+
# *.pyc binary
66+
# *.pyd binary
67+
# *.pyo binary
68+
# # Compiled C++ Object files
69+
# *.slo binary
70+
# *.lo binary
71+
# *.o binary
72+
# *.obj binary
73+
# # Precompiled C++ Headers
74+
# *.gch binary
75+
# *.pch binary
76+
# # Compiled C++ Dynamic libraries
77+
# *.so binary
78+
# *.dylib binary
79+
# *.dll binary
80+
# # Compiled C++ Static libraries
81+
# *.lai binary
82+
# *.la binary
83+
# *.a binary
84+
# *.lib binary
85+
# # C++ Executables
86+
# *.exe binary
87+
# *.out binary
88+
# *.app binary

.gitignorerevs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Documentation: https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revs-fileltfilegt
2+
# Usage: git config --local blame.ignoreRevsFile .gitignorerevs
3+
4+
# Whitespace only changes:

devDocs/codingStandards.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ for more information.
1818
This is particularly relevant for braille display drivers.
1919
This is due to a `gettext` bug; see
2020
https://github.com/nvaccess/nvda/issues/2592#issuecomment-155299911.
21-
* Most files should contain `CRLF` line endings, as this is a Windows project and can't be used on
22-
Unix-like operating systems.
21+
* Most files should be committed with `LF` line endings.
22+
Files can be checked out locally using CRLF if needed for Windows development using [git](https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#_core_autocrlf).
2323

2424
### Indentation
2525
* Indentation must be done with tabs (one per level), not spaces.

0 commit comments

Comments
 (0)