File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
scalafix-cli/src/main/scala/scalafix/internal/v1 Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,11 @@ case class Args(
77
77
" If set, only apply scalafix to added and edited files in git diff against a provided branch, commit or tag."
78
78
)
79
79
diffBase : Option [String ] = None ,
80
+ @ Description (
81
+ " The major or binary Scala version that the provided files are targeting, " +
82
+ " or the full version that was used to compile them when a classpath is provided."
83
+ )
84
+ scalaVersion : ScalaVersion = Args .runtimeScalaVersion,
80
85
@ Description (
81
86
" Run only syntactic rules, ignore semantic rules even if they are explicitly " +
82
87
" configured in .scalafix.conf or via --rules"
@@ -124,11 +129,6 @@ case class Args(
124
129
" The scala compiler options used to compile this --classpath, for example -Ywarn-unused-import"
125
130
)
126
131
scalacOptions : List [String ] = Nil ,
127
- @ Description (
128
- " The major or binary Scala version that the provided files are targeting, " +
129
- " or the full version that was used to compile them when a classpath is provided."
130
- )
131
- scalaVersion : ScalaVersion = Args .runtimeScalaVersion,
132
132
@ Section (" Tab completions" )
133
133
@ Description (
134
134
""" |Print out bash tab completions. To install:
You can’t perform that action at this time.
0 commit comments