diff options
| -rw-r--r-- | .editorconfig | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index 234928e..94f45d5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,7 +7,7 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true indent_style = space -indent_size = 4 +#indent_size = 4 max_line_length = 10000 # TypeScript/JavaScript config @@ -22,6 +22,18 @@ indent_size = 2 [**.lua] indent_size = 2 +# Python config +[*.py] +indent_size = 4 + +# Bash config +[*.bash] +indent_size = 4 + +# Yaml config +[*.yml] +indent_size = 2 + # Latex config [**.tex] trim_trailing_whitespace = false |
