-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.editorconfig
51 lines (38 loc) · 876 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
44
45
46
47
48
49
50
51
############################################################
# Awesome Interactive Fiction #
# https://github.com/tajmone/awesome-interactive-fiction #
############################################################
root = true
[*]
indent_style = space
indent_size = unset
end_of_line = unset
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{*.html,.nojekyll}]
trim_trailing_whitespace = unset
insert_final_newline = unset
## AsciiDoc
###########
[*.{ad,adoc,asciidoc}]
indent_size = 2
; Exception for autogenerated file:
[./README.adoc]
insert_final_newline = false
## Ruby
#######
[*.rb]
indent_size = 2
end_of_line = lf
## Shell Scripts
################
[*.sh]
end_of_line = lf
indent_style = tab
## Configurations
#################
[.{git*,editorconfig,*.yml}]
indent_size = 2
end_of_line = lf
# EOF #