:tada: I got pylint running reasonably well under ...
# general
p
🎉 I got pylint running reasonably well under pants for https://github.com/st2sandbox/st2/tree/pants So,
./pants lint ::
runs black, flake8, and pylint on the appropriate files now and it completes in a reasonable amount of time (pylint takes a couple minutes) Next step "Set up tests": https://www.pantsbuild.org/v2.5/docs/existing-repositories#3-set-up-tests
h
Yay!! Btw, you can save a bunch of time when iterating locally by using
./pants --changed-since=HEAD fmt
and that same command with
lint
. Then in CI, do the full
./pants lint ::
👍 1