Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Whitelist path documentation #328

Merged
merged 3 commits into from
Sep 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add whitelist to configuration documentation
It may be unclear to users that the whitelist is configurable by adding
it to the `paths` variable in pyproject.toml (see
#327). Adding it into the
example configuration should make this more obvious.
  • Loading branch information
mssalvatore committed Sep 26, 2023
commit a5d8222cf90b279312b42ee4eb826fbf691e2b87
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ ignore_decorators = ["@app.route", "@require_*"]
ignore_names = ["visit_*", "do_*"]
make_whitelist = true
min_confidence = 80
paths = ["myscript.py", "mydir"]
paths = ["myscript.py", "mydir", "whitelist.py"]
sort_by_size = true
verbose = true
```
Expand Down