.editorconfig 220 B

1234567891011121314
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. insert_final_newline = true
  5. indent_style = space
  6. indent_size = 4
  7. trim_trailing_whitespace = true
  8. [tests/Fixtures/**]
  9. trim_trailing_whitespace = false
  10. [{*.yml, *.yaml}]
  11. indent_size = 2