-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
34 lines (27 loc) · 901 Bytes
/
Copy path.editorconfig
File metadata and controls
34 lines (27 loc) · 901 Bytes
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
# Copyright (c) 2024 José Guilherme Cerqueira de Oliveira <aluno.jose.cerqueira@doctum.edu.br>
# This source code is licensed under the MIT license found in the license file.
# Configurações para EditorConfig.
# EditorConfig ajuda a manter estilos de codificação consistentes para múltiplos desenvolvedores trabalhando no mesmo projeto.
# Veja https://editorconfig.org/#file-format-details para mais detalhes.
# +--------------------+
# + Base Configuration +
# +--------------------+
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# +-------------------+
# + Python-specific +
# +-------------------+
[*.py]
indent_style = space
indent_size = 4
# +-------------------+
# + Markdown-specific +
# +-------------------+
[*.{md,markdown}]
indent_style = tab
indent_size = 2