-
Notifications
You must be signed in to change notification settings - Fork 2
feat: ability to download reports as pdf #33
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ on: | |
| branches: | ||
| - main | ||
| tags: | ||
| - '**' | ||
| - "**" | ||
| release: | ||
| types: | ||
| - published | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,3 @@ | ||
| autoflake | ||
| black | ||
| coverage[toml] | ||
| docformatter | ||
| flake8 | ||
| isort | ||
| pre-commit | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| # This file contains 2 stages | ||
| # pre-commit stage - runs by default pre-commit | ||
| # manual stage - runs the same tools but modifies files | ||
| # run as: pre-commit run --all-files --hook-stage manual | ||
| repos: | ||
| # See README.md for more information on this pre-commit hook | ||
| # Please uncomment this hook if you are a Red Hat employee, and make sure you don't commit it back upstream | ||
| # - repo: https://gitlab.cee.redhat.com/infosec-public/developer-workbench/tools.git | ||
|
webbnh marked this conversation as resolved.
|
||
| # rev: rh-pre-commit-2.3.0 | ||
| # hooks: | ||
| # # If you have not run this hook on your system before, it may prompt you to | ||
| # # log in for patterns, and you will need to try again. | ||
| # # | ||
| # # Docs: https://source.redhat.com/departments/it/it-information-security/leaktk/leaktk_components/rh_pre_commit | ||
| # - id: rh-pre-commit | ||
| # name: Red Hat pre-commit (check) | ||
| # # - id: rh-pre-commit.commit-msg # Optional for commit-msg attestation | ||
| - repo: https://github.com/PyCQA/docformatter | ||
| rev: v1.7.7 | ||
| hooks: | ||
| - id: docformatter | ||
| name: docformatter (check) | ||
| additional_dependencies: [tomli] | ||
| args: [--check, --config, ./pyproject.toml] | ||
| stages: [pre-commit] | ||
| - id: docformatter | ||
| name: docformatter (fix) | ||
| additional_dependencies: [tomli] | ||
| args: [--in-place, --config, ./pyproject.toml] | ||
| stages: [manual] | ||
| - repo: https://github.com/psf/black | ||
| rev: 25.1.0 | ||
| hooks: | ||
| - id: black | ||
| name: black (check) | ||
| args: [--check] | ||
| stages: [pre-commit] | ||
| - id: black | ||
| name: black (fix) | ||
| stages: [manual] | ||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| rev: v0.12.1 | ||
| hooks: | ||
| - id: ruff-check | ||
| name: ruff linter (check) | ||
| stages: [pre-commit] | ||
| - id: ruff-check | ||
| name: ruff linter (fix) | ||
| args: [--fix] | ||
| stages: [manual] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.