Vaidas Pilkauskas
Vaidas Pilkauskas
@Wyverald is there a backwards compatible way to turn off `incompatible_unambiguous_label_stringification` on older Bazel versions?
@Wyverald these tests need to test Bazel failure scenarios, and/or pass different arguments. I don't think there is a way to run them from `sh_test` without running Bazel inside Bazel.
@tpasternak do you know a usecase when someone may want to enforce auto import? I guess for teams working with Bazel projects it's expected to have managed IDE and have...
I think `isStrongProjectInfoHolder` override should be removed as it does no make much sense in auto import, which should run last. I'll send a PR with the change.
👋🏻 @mai93 @jastice would appreciate a review on this one
> I'm only wondering, does rules_scala support IntelliJ Plugins development out of the box? It's just Java/Scala interop, nothing is specifically done to support Intellij plugins development.
It depends on which rules are you using. Eg.: https://github.com/bazelbuild/rules_scala/blob/master/scala/private/rules/scala_binary.bzl#L3
You may be getting `skylib` from another dependency like `rules_proto`, which has its own setup macro https://github.com/bazelbuild/rules_proto/blob/master/proto/private/dependencies.bzl#L18. We keep `skylib` at the top of the `WORKSPACE` to make sure, that...
Let's leave this open - it would be great to add explanatory comment in the readme
You can provide config with a macro in WORKSPACE, like here: https://github.com/bazelbuild/rules_scala/blob/master/WORKSPACE#L64 (accepts `path` parameter to config file https://github.com/bazelbuild/rules_scala/blob/72c27ef603fc8b771fa80e3398c3fe7701af1515/scala/scalafmt/scalafmt_repositories.bzl#L7) Is this what you are looking for?