Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have been looking to run python linter only for uncommitted changes and not my entire project, Is there a way to run Pylama only for git changes.
You can provide a list of the uncommitted changes to Pylama as a parameter.
Run from the command line:
pylama "$(git --no-pager diff --name-only)"