-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
36 lines (26 loc) · 861 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
# -*- coding: utf-8 -*-
# This file is part of thumbor-wand-engine
# https://github.com/scorphus/thumbor-wand-engine
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2020-2022, 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