-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
34 lines (25 loc) · 855 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
# This file is part of Python Challenge Solutions
# https://github.com/scorphus/PythonChallengeSolutions
# Licensed under the BSD-3-Clause license:
# https://opensource.org/licenses/BSD-3-Clause
# Copyright (c) 2018-2020, Pablo S. Blum de Aguiar <scorphus@gmail.com>
# EditorConfig is awesome! Check https://EditorConfig.org. It helps developers
# define and maintain consistent coding styles between different editors/IDEs.
# top-most EditorConfig file (no other file in a parent directory will be used)
root = true
# For all file types
[*]
end_of_line = lf # Unix-style newlines
insert_final_newline = true
trim_trailing_whitespace = true
# Default charset
charset = utf-8
# Default indent style and size
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
[*.{yml,yaml}]
indent_size = 2
[*.md]
trim_trailing_whitespace = false