-
Notifications
You must be signed in to change notification settings - Fork 115
/
.editorconfig
43 lines (36 loc) · 1.16 KB
/
.editorconfig
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
########################################################################
# Editor Configuration #
# #
# This file controls language-specific settings in text editors that #
# understand it, and allows for the project to set its behavior #
# universally without requiring that all viewers agree with it. #
########################################################################
# All files must be encoded in UTF-8 and use ␊ as the line *terminator*.
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[Justfile]
indent_size = 8
indent_style = tab
# Markdown files use two-space indentation.
[*.md]
indent_size = 2
indent_style = space
# Rust files use ␉ indentation at four columns.
[*.rs]
indent_size = 4
indent_style = tab
# Shell scripts use two-space indentation.
[*.sh]
indent_size = 2
indent_style = space
# TOML files use ␉ indentation at eight columns.
[*.toml]
indent_size = 8
indent_style = tab
# YAML files use two-space indentation.
[*.yml]
indent_size = 2
indent_style = space