mhulse / gh-boiler

Common GitHub boilerplate files I use to kick-start new repositories.
Apache License 2.0
8 stars 3 forks source link

Editorconfig: YML #40

Closed mhulse closed 10 years ago

mhulse commented 10 years ago

Add YML to space list. Basing this issue one Jekyll page:

http://jekyllrb.com/docs/configuration/

Do not use tabs in configuration files

This will either lead to parsing errors, or Jekyll will revert to the default settings. Use spaces instead.

mhulse commented 10 years ago

Kinda related, syntax questions:

mhulse commented 10 years ago

Latest version:

# This file is for unifying the coding style for different editors and IDEs.
# EditorConfig is AweSome: http://editorconfig.org/

root = true

[*]
charset = UTF-8
end_of_line = LF
insert_final_newline = true
trim_trailing_whitespace = false
indent_size = 4
indent_style = tab

[*.{json,py}]
indent_size = 4
indent_style = space

[*.{ini,rb,yml}]
indent_size = 2
indent_style = space

[{Gemfile*,Rakefile}]
indent_size = 2
indent_style = space

[*.bat]
end_of_line = crlf