This needs a way to match directories for changes in monorepos. E.g. run this linter only if there were changes in this directory.
replies(4):
```lint-monorepo.sh
# read that data
json_input=$(cat)
# do some parsing here with jq, get the file path (file_path)
if [$file_path" == "$dir1"*]
run lint_for_dir1
```