forked from mainsail-crew/crowsnest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
45 lines (35 loc) · 889 Bytes
/
.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 Config
# This should help contributors and save time for my sometimes cheesy Brain xD
#### webcamd - A webcam Service for multiple Cams and Stream Services.
####
#### Written by Stephan Wendel aka KwadFan <[email protected]>
#### Copyright 2021
#### https://github.com/mainsail-crew/crowsnest
####
#### This File is distributed under GPLv3
####
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 125
indent_style = space
indent_size = 4
[*.sh]
# According to Linux Kernel line lenght.
# Try to stay at max lenght of 80 characters
max_line_length = 100
[*.{md,markdown}]
insert_final_newline = true
trim_trailing_whitespace = false
[{Makefile,**.mk}]
indent_style = tab
[*.{json,yml,yaml}]
indent_style = space
indent_size = 2
# HTML related
[*.{html,css,js}]
indent_style = space
indent_size = 2