.editorconfig 471 B

12345678910111213141516171819202122
  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. indent_size = 2
  13. [{.jshintrc,*.json,*.yml}]
  14. indent_style = space
  15. indent_size = 2
  16. [{*.txt,wp-config-sample.php}]
  17. end_of_line = crlf