.editorconfig 357 B

1234567891011121314151617
  1. # Drupal editor configuration normalization
  2. # @see http://editorconfig.org/
  3. # This is the top-most .editorconfig file; do not search in parent directories.
  4. root = true
  5. # All files.
  6. [*]
  7. end_of_line = LF
  8. indent_style = space
  9. indent_size = 2
  10. charset = utf-8
  11. trim_trailing_whitespace = true
  12. insert_final_newline = true
  13. [composer.{json,lock}]
  14. indent_size = 4