.swiftformat 373 B

1234567891011121314
  1. # Formatting Options - Mimic Google style
  2. --indent 2
  3. --maxwidth 100
  4. --wrapparameters afterfirst
  5. # Disabled Rules
  6. # Too many of our swift files have simplistic examples. While technically
  7. # it's correct to remove the unused argument labels, it makes our examples
  8. # look wrong.
  9. --disable unusedArguments
  10. # We prefer trailing braces.
  11. --disable wrapMultilineStatementBraces