Skip to content

Commit 3f9df30

Browse files
committed
Fix scalafmt_repositories.bzl lint errors
Broke CI again. D'oh!
1 parent 487e2c3 commit 3f9df30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scala/scalafmt/scalafmt_repositories.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ def _scalafmt_config_impl(repository_ctx):
1616
build.append(" visibility = [\"//visibility:public\"],")
1717
build.append(")\n")
1818

19-
repository_ctx.file('BUILD', "\n".join(build), executable = False)
19+
repository_ctx.file("BUILD", "\n".join(build), executable = False)
2020
repository_ctx.symlink(repository_ctx.path(config_path), config_path.name)
2121

2222
scalafmt_config = repository_rule(
2323
implementation = _scalafmt_config_impl,
2424
attrs = {
2525
"path": attr.label(mandatory = True, allow_single_file = True),
26-
}
26+
},
2727
)
2828

2929
def scalafmt_default_config(path = ".scalafmt.conf", **kwargs):

0 commit comments

Comments
 (0)