-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
42 lines (30 loc) · 991 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
###############################################
# @Author : Jason
# @Contact : [email protected]
# @File : .editorconfig
# @Created : 15/12/2019
# @License : WTFPL
# @Copyright : Copyright (c) CasjaysDev
# @Description :
###############################################
# For more information about the configurations used
# in this file, please see the EditorConfig documentation.
#
# https://editorconfig.org
root = false
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[*]
charset = utf-8
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[*.md]
# Markdown uses the trailing whitespaces.
# https://daringfireball.net/projects/markdown/syntax#block
trim_trailing_whitespace = false
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[.travis.yml]
indent_size = 2
indent_style = space