Skip to content

Commit

Permalink
Sync Scalafmt settings between all repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
ihostage committed Sep 14, 2022
1 parent 9bd5990 commit 05ac8bf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ group:
# playframework/play-java-angular-seed
# playframework/play-scala-angular-seed

# Scalafmt settings
- files:
- .scalafmt.conf
repos: |
playframework/play-soap
1 change: 1 addition & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- sync-scalafmt # TODO: remove before merge
jobs:
sync:
runs-on: ubuntu-20.04
Expand Down
12 changes: 12 additions & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
align = true
assumeStandardLibraryStripMargin = true
danglingParentheses = true
docstrings = JavaDoc
maxColumn = 120
project.excludeFilters += core/play/src/main/scala/play/core/hidden/ObjectMappings.scala # Ooohhh 😞
project.git = true
rewrite.rules = [ AvoidInfix, ExpandImportSelectors, RedundantParens, SortModifiers, PreferCurlyFors ]
rewrite.sortModifiers.order = [ "private", "protected", "final", "sealed", "abstract", "implicit", "override", "lazy" ]
spaces.inImportCurlyBraces = true # more idiomatic to include whitepsace in import x.{ yyy }
trailingCommas = preserve
version = 2.3.2

0 comments on commit 05ac8bf

Please sign in to comment.