From 119c23373bcb45c89a316b0de355ded45ab8563c Mon Sep 17 00:00:00 2001 From: Gabriel Tkacz <55806524+gtkacz@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:52:43 -0300 Subject: [PATCH] Update README.md --- README.md | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 9bb056b..f1cfa53 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Scan with a minimum confidence of 80%, excluding specific directories, and using - name: Run Vulture uses: gtkacz/vulture-action@1.0.0 with: - args: '. --min-confidence 80 --exclude "tests,docs,build" --verbose' + args: '--min-confidence 80 --exclude "tests,docs,build" --verbose' ``` ### Scanning Specific Files or Directories @@ -67,18 +67,7 @@ Scan only the `src` directory: - name: Run Vulture uses: gtkacz/vulture-action@v1 with: - src: 'src' -``` - -### Using a Configuration File - -If you have a `vulture_config.py` file in your repository: - -```yaml -- name: Run Vulture - uses: gtkacz/vulture-action@1.0.0 - with: - args: '--make-whitelist vulture_config.py' + src: 'package' ``` ## Contributing