-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
48 lines (38 loc) · 1.17 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
38
39
40
41
42
43
44
45
46
47
48
root = true
# [*.{py,js,sh,sql,css,json,yml}]
[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace=true
insert_final_newline=true
indent_style=space
indent_size=4
# Comentado porque el comportamiento es inconsistente entre editores
# Idealmente avisar en 80, no hacer nunca soft wrap y prohibir más de 88
# max_line_length = 88
# Para evitar líneas demasiado largas
# No usamos .htm porqué la regla sería usar siempre .html
# Usamos .mak y .mako porqué no hay un criterio fijado
[*.{html,xml,mak,mako,jinja2}]
indent_size=2
# max_line_length = 100
# En Mardown las líneas en blanco y espacios adicionales tienen significados
# especiales que hay que respetar
[*.md]
trim_trailing_whitespace = false
insert_final_newline=false
# El [tabulador es obligatorio](https://www.gnu.org/software/make/manual/make.html#Rule-Introduction)
# en los Makefile. El tamaño 4 es lo habitual.
[Makefile]
indent_style = tab
indent_size = 4
# For shfmt mainly
[*.sh]
binary_next_line = true # -bi
switch_case_indent = true # -ci
space_redirects = true # -sr
keep_padding = false # -kp
function_next_line = false # -fn
# Ignore "node_modules" directory.
[**/node_modules/**]
ignore = true