]> arthur.barton.de Git - sd-tool.git/blob - .editorconfig
sd-tool: Set "pipefail" bash shell option
[sd-tool.git] / .editorconfig
1 # .editorconfig: Editor settings, see <https://editorconfig.org>.
2
3 # top-most EditorConfig file
4 root = true
5
6 # Defaults for all file types:
7
8 [*]
9 # Use UTF-8 encoding.
10 charset = utf-8
11 # Unix-style newlines.
12 end_of_line = lf
13 # Files should end with a newline.
14 insert_final_newline = true
15 # Remove whitespace characters preceding newline characters.
16 trim_trailing_whitespace = true
17 # Tab indentation (8 characters wide).
18 indent_style = tab
19 indent_size = 8
20
21 # File type specific settings follow:
22
23 [*.md]
24 # 4 space indentation.
25 indent_style = space
26 indent_size = 4