Skip to content

Commit

Permalink
Fix editorconfig
Browse files Browse the repository at this point in the history
Use double asterisks in the path spec - single ones make rules effective
only for top-level files.
  • Loading branch information
matejak committed Oct 10, 2022
1 parent 64f8577 commit 905f6a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
root = true

# Unix-style newlines with a newline ending every file
[*]
[**]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indentation_guess = true

[*.py]
[**.py]
indent_style = space
indent_size = unset

[{*.yml, *.yaml, *.jinja}]
[{**.yml, **.yaml, **.jinja}]
indent_style = space
indent_size = 4

0 comments on commit 905f6a0

Please sign in to comment.