Skip to content

Commit addb7b9

Browse files
author
Gonzalo Diaz
committed
[CONFIG] Editorconfig rule friendly with yammlint (indent with 2 spaces for anything) and autopep8 standards (indent with 4 spaces for python)
1 parent 481070c commit addb7b9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.editorconfig

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@ root = true
2424

2525
[*]
2626
indent_style = space
27-
indent_size = 4
27+
indent_size = 2
2828
end_of_line = lf
2929
charset = utf-8
3030
trim_trailing_whitespace = true
3131
insert_final_newline = true
3232

33+
[**.py]
34+
indent_style = space
35+
indent_size = 4
36+
3337
[{Makefile,**.mk}]
3438
# Use tabs for indentation (Makefiles require tabs)
3539
indent_style = tab

0 commit comments

Comments
 (0)