-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added ZIO Ecosystem SBT Plugin The purpose of this plugin is provide consistent build experience for all projects in the ZIO ecosystem. This replaces the 'BuildHelper' class that gets copied and pasted from one ZIO project to another. * Provides standard build syntax for common tasks such as linting, preparing a build, etc. * Supports extensible custom build commands with helpful descriptions. * Things like compiler settings, scala versions, etc. are defined in a single place. * True color ASNI art header!!! * Fix linting command. * Formatting * Remove dead code. * Removed Sonatype credentials as I assume that we just use the sonatype sbt plugin for publishing.
- Loading branch information
1 parent
08b2082
commit aba0760
Showing
15 changed files
with
774 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,24 @@ | ||
version = 2.7.5 | ||
|
||
align = most | ||
version = "3.0.6" | ||
maxColumn = 120 | ||
align.preset = most | ||
align.multiline = false | ||
continuationIndent.defnSite = 2 | ||
assumeStandardLibraryStripMargin = true | ||
danglingParentheses = true | ||
docstrings = JavaDoc | ||
docstrings.style = Asterisk | ||
docstrings.wrapMaxColumn = 80 | ||
lineEndings = preserve | ||
includeCurlyBraceInSelectChains = false | ||
lineEndings = unix | ||
maxColumn = 120 | ||
|
||
continuationIndent { | ||
callSite = 2 | ||
defnSite = 2 | ||
} | ||
|
||
newlines { | ||
alwaysBeforeTopLevelStatements = true | ||
alwaysBeforeMultilineDef = true | ||
} | ||
|
||
spaces { | ||
afterKeywordBeforeParen = true | ||
inImportCurlyBraces = true | ||
} | ||
danglingParentheses.preset = true | ||
optIn.annotationNewlines = true | ||
newlines.alwaysBeforeMultilineDef = false | ||
runner.dialect = scala213 | ||
rewrite.rules = [RedundantBraces] | ||
|
||
rewrite.rules = [ | ||
AsciiSortImports, | ||
AvoidInfix, | ||
PreferCurlyFors, | ||
RedundantBraces, | ||
RedundantParens, | ||
SortModifiers | ||
] | ||
project.excludePaths = ["glob:**/scalafix/input/**", "glob:**/scalafix/output/**"] | ||
|
||
optIn { | ||
annotationNewlines = true | ||
rewrite.redundantBraces.generalExpressions = false | ||
rewriteTokens = { | ||
"⇒": "=>" | ||
"→": "->" | ||
"←": "<-" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.