I have seen some threads that show me how to use Pylint as a test inside bazel. However, I want to use Pylint with one of the following commands:
bazel run --config=pylint or bazel build --config=pylint
What would be the best strategy here? In the future, I will use the same strategy to also implement black and buildifier as bazel run --config=black and bazel run --config=buildifier So I want to standarize it, if possible.
I am already able to run Pylint through a test, but this is not what I want.