Hi all, i'm looking to implement linting on my dag...
# ask-community
l
Hi all, i'm looking to implement linting on my dagster implementation so that users can get some level of assurance that their dagster changes aren't going to break the eventual deploy. Is there a CLI utility or something to validate that a dagster repository is loadable? I'd like to find something thats a little quicker than doing a full branch deployment
j
running the dagster ui locally would surface any errors loading the repository
dagster dev
will run the ui
j
dagster job list
would be another option
l
Thanks all, these seem cleaner than what I ended up doing, which is running my repository module using
python -m
so I'll take a look at these.