Capstone Checker
Installation
Usage
In a project's checks.py, import register_check and
main.
# checks.py
from capstone_checker import register_check, main
@register_check()
def check_train_search(context, args):
...
if __name__ == "__main__":
main()
To run checks for all tasks (with current directory as project directory with capstone.yml):
To run check for one task:
Validate the syntax of capstone.yml.