<Comment on #21798 Is it possible to alias multipl...
# github-notifications
c
Comment on #21798 Is it possible to alias multiple goals? Discussion answered by benjyw You can do this with command-line aliases. E.g.,
Copy code
[cli.alias]
pre-commit = "fmt lint check test ::"
And then
Copy code
$ pants pre-commit
Is the same as
Copy code
$ pants fmt lint check test ::
pantsbuild/pants