2014-02-20 03:35:38 +01:00
|
|
|
# This file is for unifying the coding style for different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
# WordPress Coding Standards
|
2015-04-12 23:28:58 +02:00
|
|
|
# https://make.wordpress.org/core/handbook/coding-standards/
|
2014-02-20 03:35:38 +01:00
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
indent_style = tab
|
|
|
|
|
2018-01-16 04:54:10 +01:00
|
|
|
[*.yml]
|
2014-02-20 03:35:38 +01:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
2018-03-20 23:14:53 +01:00
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
2014-06-24 12:54:41 +02:00
|
|
|
[{*.txt,wp-config-sample.php}]
|
2014-02-20 03:35:38 +01:00
|
|
|
end_of_line = crlf
|