-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
68 lines (56 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#==================================================================================================
# Captive default editorconfig
#
# ⚠️ DO NOT EDIT this section, see the end of file
# Generated from https://git.captive.fr/captive/template/project-template/-/blob/main/.editorconfig
#==================================================================================================
root = true
[*]
charset = utf-8
continuation_indent_size = 4
curly_bracket_next_line = false
end_of_line = lf
indent_brace_style = Stroustrup
indent_size = 2
indent_style = space
insert_final_newline = true
spaces_around_brackets = outside
spaces_around_operators = true
trim_trailing_whitespace = true
[*.{json,json5,webmanifest}]
indent_size = 2
indent_style = space
insert_final_newline = ignore
[*.{yml,yaml}]
indent_size = 2
indent_style = space
[*.{bat,reg,ps1,vbs,cs,cmd,fs,ahk}]
end_of_line = crlf
[*.{sh,zsh}]
end_of_line = lf
[*.{css,sass,scss,less,pcss}]
indent_size = 2
indent_style = space
max_line_length = 120
quote_type = single
[*.{js,jsx,jsm,ts,tsx,cjs,cjs,cjsx,cts,ctsx,mjs,mts,mtsx,js.hbs}]
indent_size = 2
indent_style = space
max_line_length = 120
quote_type = single
[*.{htm,html,svg,vue}]
indent_size = 2
indent_style = space
[*.{md,mdwn,mdown,markdown,mdx,apib}]
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = false
[*.{py,robot}]
indent_size = 4
indent_style = space
[{Makefile,**.mk,**.make}]
indent_style = tab
[*.txt]
trim_trailing_whitespace = false
insert_final_newline = false