forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
28 lines (23 loc) · 700 Bytes
/
.editorconfig
File metadata and controls
28 lines (23 loc) · 700 Bytes
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
# See https://EditorConfig.org
# This is the top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file.
# But do not trim trailing whitespaces -- while we
# want that eventually, it just causes pain right now,
# if it pollutes commits.
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
charset = utf-8
# trailing whitespace are relevant in .tst files
[*.tst]
trim_trailing_whitespace = false
# our GAPDoc XML files may contain tests for which trailing whitespace are relevant
[*.xml]
trim_trailing_whitespace = false
# In Makefile one must use tab indentation
[Makefile*]
indent_style = tab