Skip to content

Commit

Permalink
chore: Fix CHANGELOG.md warnings (#79)
Browse files Browse the repository at this point in the history
# Pull Request

## Description

This change updates the code quality workflow and VSCode settings to
improve code formatting and linting.

In the `.github/workflows/code-quality.yml` file, the
`VALIDATE_NATURAL_LANGUAGE` option is set to false, disabling natural
language validation in the super-linter.

fixes #80
  • Loading branch information
JackPlowman authored Sep 29, 2024
1 parent 1d48360 commit 44ed05f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
VALIDATE_PYTHON_PYLINT: false
VALIDATE_PYTHON_RUFF: false
VALIDATE_PYTHON_PYINK: false
VALIDATE_NATURAL_LANGUAGE: false

check-python-code-format-and-quality:
name: Check Python Code Format and Quality
Expand Down
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"python.languageServer": "Pylance",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "always",
Expand All @@ -28,5 +29,8 @@
},
"editor.wordBasedSuggestions": "allDocuments"
},
"editor.formatOnSave": true
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
}

0 comments on commit 44ed05f

Please sign in to comment.