forked from TownyAdvanced/Towny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
37 lines (33 loc) · 1.04 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
# Towny's EditorConfig
## Eclipse users need https://github.com/ncjones/editorconfig-eclipse
## NetBeans users need https://github.com/welovecoding/editorconfig-netbeans
## IDEA users have built-in support
root = true
# Global Rules (Applies to all files)
## The project uses Windows-style line-endings.
[*.java]
end_of_line = crlf
insert_final_newline = false
trim_trailing_whitespace = false
charset = utf-8
indent_size = 4
indent_style = tab
# Tab-sensitive files, use spaces from here on out
## YAML 1.2 Spec (https://yaml.org/spec/1.2/spec.html)
## Markdownlint (https://github.com/DavidAnson/markdownlint#rules--aliases)
[*.{yml,yaml,md}]
end_of_line = crlf
insert_final_newline = false
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4
## See Maven Code Style and Code Conventions
## https://maven.apache.org/developers/conventions/code.html
[*.xml]
end_of_line = crlf
insert_final_newline = false
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4