mirror of
https://github.com/mas-cli/mas
synced 2024-11-24 12:33:08 +00:00
✏️ Update editorconfig
This commit is contained in:
parent
6bf45a0cfe
commit
1a18f287ac
1 changed files with 25 additions and 3 deletions
|
@ -9,8 +9,30 @@ charset = utf-8
|
|||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[script/*]
|
||||
indent_size = 2
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
# Use 2 spaces for Ruby files
|
||||
[{Podfile,Rakefile,*.{rb,podspec}}]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
max_line_length = 80
|
||||
|
||||
# Use tabs for property lists
|
||||
[*.plist]
|
||||
indent_style = tab
|
||||
|
||||
# JSON files contain newlines inconsistently
|
||||
[*.json]
|
||||
insert_final_newline = ignore
|
||||
|
||||
# Makefiles always use tabs for indentation
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
|
||||
# Trailing spaces have meaning in Markdown
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[{script/*,*.rb,*.yml}]
|
||||
indent_size = 2
|
||||
|
|
Loading…
Reference in a new issue