We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac2c66c commit 98b3d2dCopy full SHA for 98b3d2d
rules/scalafmt/private/test.bzl
@@ -32,7 +32,7 @@ scala_non_default_format_attributes = {
32
def build_format(ctx):
33
files = []
34
manifest_content = []
35
- config = ctx.toolchains["//rules/scalafmt:toolchain_type"].scalafmt_config.config
+ config = ctx.toolchains["@rules_scala_annex//rules/scalafmt:toolchain_type"].scalafmt_config.config
36
37
for src in ctx.files.srcs:
38
if src.short_path.endswith(".scala") and src.is_source:
rules/scalafmt/register_toolchain.bzl
@@ -15,7 +15,7 @@ _scalafmt_config = rule(
15
attrs = {
16
"config": attr.label(
17
allow_single_file = [".conf"],
18
- default = "//:.scalafmt.conf",
+ default = "@rules_scala_annex//:.scalafmt.conf",
19
doc = "The Scalafmt configuration file.",
20
),
21
},
0 commit comments