--ignore-package now supports specifying a path to a specific package
--ignore-package now supports globs
Examples:
# Ignore all issues in the `@repo/tools` package
sherif -p @repo/tools
# Ignore all issues for packages name matching `@repo-internal/*`
sherif -p @repo-internal/*
# Ignore all issues in the package inside `./integrations/react`
sherif -p ./integrations/react
# Ignore all issues for packages inside `./integrations/*`
sherif -p ./integrations/*
Closes https://github.com/QuiiBz/sherif/issues/41
--ignore-package
now supports specifying a path to a specific package--ignore-package
now supports globsExamples: