We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With alignParameters as false, my code formats as
alignParameters
Importance(10000, goal, strategy1, strategy2, strategy3, strategy4, decCommodityInd, decMoodInd, decCurLeaderOpinionInd, incAltLeaderOpinionInd)
With alignParameters as true, it formats as
If I replace the constant with a variable, it behaves reasonably.
// true val numIter = 10000 Importance(numIter, goal, strategy1, strategy2, strategy3, strategy4, decCommodityInd, decMoodInd, decCurLeaderOpinionInd, incAltLeaderOpinionInd) // false val numIter = 10000 Importance(numIter, goal, strategy1, strategy2, strategy3, strategy4, decCommodityInd, decMoodInd, decCurLeaderOpinionInd, incAltLeaderOpinionInd)
My configuration (through sbt) is
import scalariform.formatter.preferences._ ThisBuild / scalariformPreferences := scalariformPreferences.value. setPreference(AlignArguments, true). setPreference(AlignParameters, true). setPreference(DoubleIndentConstructorArguments, true). setPreference(DoubleIndentMethodDeclaration, true). setPreference(FirstArgumentOnNewline, Prevent). setPreference(IndentLocalDefs, true). setPreference(IndentSpaces, 4)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With
alignParameters
as false, my code formats asWith
alignParameters
as true, it formats asIf I replace the constant with a variable, it behaves reasonably.
My configuration (through sbt) is
The text was updated successfully, but these errors were encountered: