We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 487e2c3 commit 3f9df30Copy full SHA for 3f9df30
scala/scalafmt/scalafmt_repositories.bzl
@@ -16,14 +16,14 @@ def _scalafmt_config_impl(repository_ctx):
16
build.append(" visibility = [\"//visibility:public\"],")
17
build.append(")\n")
18
19
- repository_ctx.file('BUILD', "\n".join(build), executable = False)
+ repository_ctx.file("BUILD", "\n".join(build), executable = False)
20
repository_ctx.symlink(repository_ctx.path(config_path), config_path.name)
21
22
scalafmt_config = repository_rule(
23
implementation = _scalafmt_config_impl,
24
attrs = {
25
"path": attr.label(mandatory = True, allow_single_file = True),
26
- }
+ },
27
)
28
29
def scalafmt_default_config(path = ".scalafmt.conf", **kwargs):
0 commit comments