Conversation
Qodana for Python167 new problems were found
☁️ View the detailed Qodana report Contact Qodana teamContact us at qodana-support@jetbrains.com
|
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 introduces pre-commit hooks for both backend and frontend code quality enforcement, and splits the Qodana code quality workflow into separate jobs for backend and frontend. It also adds configuration files for Qodana to target the appropriate codebases and updates related dependencies and scripts for streamlined developer experience.
Code Quality Automation and Tooling Enhancements:
.pre-commit-config.yamlto introduce pre-commit hooks:rufffor backend (Python) linting/formatting andeslintfor frontend (TypeScript/React) linting.Makefileto add commands for installing, running, and updating pre-commit hooks, improving developer workflow for code quality checks.pre-commitas a development dependency inbackend/pyproject.tomlto ensure the backend environment supports pre-commit hooks.Qodana Code Quality Workflow Improvements:
.github/workflows/qodana_code_quality.ymlto run Qodana as two separate jobs: one for backend (Python) and one for frontend (JS/TS), each with its own configuration and secrets.qodana.yamltoqodana-backend.yaml(now excluding frontend and other directories from backend checks) and addedqodana-frontend.yamlfor frontend-specific Qodana analysis. [1] [2]