.editorconfig 455 B

123456789101112131415161718192021222324
  1. # This file is for unifying the coding style for different editors and IDEs
  2. # editorconfig.org
  3. # WordPress Coding Standards
  4. # https://make.wordpress.org/core/handbook/coding-standards/
  5. root = true
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. insert_final_newline = false
  10. trim_trailing_whitespace = true
  11. indent_style = tab
  12. [*.yml]
  13. indent_style = space
  14. indent_size = 2
  15. [*.md]
  16. trim_trailing_whitespace = false
  17. [{*.txt,wp-config-sample.php}]
  18. end_of_line = crlf