woocommerce/.editorconfig

35 lines
616 B
INI
Raw Normal View History

# This file is for unifying the coding style for different editors and IDEs
2013-08-25 19:11:19 +00:00
# editorconfig.org
# WordPress Coding Standards
# http://make.wordpress.org/core/handbook/coding-standards/
2013-08-25 19:11:19 +00:00
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
tab_width = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
2014-07-30 19:09:01 +00:00
[*.md]
trim_trailing_whitespace = false
indent_style = space
indent_size = 2
2014-07-30 19:09:01 +00:00
[*.txt]
trim_trailing_whitespace = false
[*.json]
insert_final_newline = false
indent_style = space
2014-07-30 19:09:01 +00:00
indent_size = 2
[*.yml]
insert_final_newline = false
indent_style = space
indent_size = 2