chore(editorconfig): minor fixes and updates

This commit is contained in:
Julien Fontanet 2017-12-14 18:00:20 +01:00
parent d93eda34c9
commit 938e7704e6

View File

@ -11,7 +11,7 @@ root = true
charset = utf-8 charset = utf-8
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespaces = true trim_trailing_whitespace = true
# CoffeeScript # CoffeeScript
# #
@ -28,12 +28,12 @@ indent_style = space
# Package.json # Package.json
# #
# This indentation style is the one used by npm. # This indentation style is the one used by npm.
[/package.json] [package.json]
indent_size = 2 indent_size = 2
indent_style = space indent_style = space
# Jade # Pug (Jade)
[*.jade] [*.{jade,pug}]
indent_size = 2 indent_size = 2
indent_style = space indent_style = space
@ -41,7 +41,7 @@ indent_style = space
# #
# Two spaces seems to be the standard most common style, at least in # Two spaces seems to be the standard most common style, at least in
# Node.js (http://nodeguide.com/style.html#tabs-vs-spaces). # Node.js (http://nodeguide.com/style.html#tabs-vs-spaces).
[*.js] [*.{js,jsx,ts,tsx}]
indent_size = 2 indent_size = 2
indent_style = space indent_style = space