forked from sventschui/nexus-casc-plugin
-
Notifications
You must be signed in to change notification settings - Fork 21
/
.editorconfig
41 lines (32 loc) · 1.01 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
# http://editorconfig.org
# A special property that should be specified at the top of the file outside of any sections.
# Set to true to stop .editorconfig file search on the current file.
root = true
[*]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
continuation_indent_size = 2
max_line_length = 120
[*.sh]
end_of_line = lf
# shfmt options, equivalent to: -ln=bash -bn -ci -sr
shell_variant = bash
binary_next_line = true
switch_case_indent = true
space_redirects = true
[*.{bat,cmd,ps1}]
end_of_line = crlf
[*.py]
indent_size = 4
continuation_indent_size = 4
[Makefile]
indent_style = tab
end_of_line = lf
[.gitmodules]
indent_style = tab
[*.{java,xml}]
indent_size = 4
continuation_indent_size = 4