-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.editorconfig
More file actions
26 lines (23 loc) · 670 Bytes
/
.editorconfig
File metadata and controls
26 lines (23 loc) · 670 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
; Mis proyectos siguen el formato predeterminado de Prettier.
;
; Si está instalado el plugin de Prettier, el IDE aplicará automáticamente
; el formateo al guardar los archivos.
;
; Este archivo reproduce las reglas básicas del formato por defecto de Prettier,
; para garantizar una apariencia coherente incluso si alguien contribuye al
; proyecto sin tener Prettier configurado.
;
; Más información:
; - https://prettier.io
; - https://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80
[*.md]
trim_trailing_whitespace = false