.editorconfig 369 B

123456789101112131415161718
  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 = true
  10. trim_trailing_whitespace = true
  11. indent_style = tab
  12. [*.{yml,yaml}]
  13. indent_style = space
  14. indent_size = 2