mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-24 12:09:40 +01:00
.editorconfig. add Crystal & Nim && Python max_line_length
This commit is contained in:
parent
190b4b0a0d
commit
5743a2e134
@ -20,15 +20,27 @@ indent_size = tab
|
||||
[*.{bash,sh}]
|
||||
end_of_line = lf
|
||||
|
||||
# Crystal https://crystal-lang.org/reference/1.7/conventions/coding_style.html#indentation
|
||||
[*.cr]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
# Markdown apparently allows linebreaks by two trailing spaces, while I
|
||||
# never seem to do that, maybe I should accept it
|
||||
[*.{markdown,md}]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
# Nim https://nim-lang.org/docs/nep1.html#introduction-spacing-and-whitespace-conventions
|
||||
[*.nim]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
max_line_length = 80
|
||||
|
||||
# Python https://peps.python.org/pep-0008/#indentation
|
||||
[*.py]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
max_line_length = 79
|
||||
|
||||
# Ruby
|
||||
#[*.rb]
|
||||
|
Loading…
Reference in New Issue
Block a user