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.
This pull request includes several changes to the CI/CD workflows, code formatting tools, and documentation updates. The most important changes focus on replacing
flake8
andblack
withruff
, updating the CI/CD workflow files, and modifying the VS Code settings and extensions.CI/CD Workflow Updates:
.github/workflows/codeql.yml
: Minor formatting changes to the cron schedule and removal of extra whitespace. [1] [2].github/workflows/lint.yml
: Replacedflake8
andblack
withruff
for linting and formatting, and updated job names and commands accordingly. [1] [2] [3]VS Code Configuration Updates:
.vscode/extensions.json
: Updated recommended extensions to includeprettier
,powershell
, andruff
, and removedflake8
andblack
..vscode/settings.json
: Updated default formatter and format on save settings to useruff
andprettier
, and added new settings forpowershell
. [1] [2]Documentation Updates:
README.md
: Updated code style badge to reflect the switch toruff
and made minor formatting improvements. [1] [2]SECURITY.md
: Adjusted bullet point formatting for consistency.Configuration File Updates:
pyproject.toml
: Addedruff
configuration settings.setup.cfg
: Removedflake8
andblack
configuration settings.Minor Codebase Cleanup:
src/fabric_cicd/__init__.py
: Removed an unnecessary blank line.