aboutsummaryrefslogtreecommitdiff
path: root/rules/kotlin
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2023-03-15 17:25:40 -0700
committerCole Faust <colefaust@google.com>2023-03-16 11:31:00 -0700
commit311c8a968162ef387c037b88d0fb049a76cfaf5c (patch)
treeb01f409e5f6f11b4ef7efd78f086ff0090424d56 /rules/kotlin
parent640eae22ffeeda705ed9d240bd6862ed7dda15b4 (diff)
downloadbazel-311c8a968162ef387c037b88d0fb049a76cfaf5c.tar.gz
Enable and fix buildifier unused-variable and list-append lints
Bug: 271709362 Test: Presubmits Change-Id: I660458c2194999182f7b3cccb79813a267a156fc
Diffstat (limited to 'rules/kotlin')
-rw-r--r--rules/kotlin/rules.bzl10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules/kotlin/rules.bzl b/rules/kotlin/rules.bzl
index 944f6077..2a5c7c98 100644
--- a/rules/kotlin/rules.bzl
+++ b/rules/kotlin/rules.bzl
@@ -13,13 +13,13 @@
# limitations under the License.
load(
- ":kt_jvm_library.bzl",
- _kt_jvm_library = "kt_jvm_library",
-)
-load(
"@rules_kotlin//kotlin:compiler_opt.bzl",
_kt_compiler_opt = "kt_compiler_opt",
)
+load(
+ ":kt_jvm_library.bzl",
+ _kt_jvm_library = "kt_jvm_library",
+)
kt_jvm_library = _kt_jvm_library
-kt_compiler_opt = _kt_jvm_library
+kt_compiler_opt = _kt_compiler_opt