From dfd4f1a7b8b563873ab9b3bbe42131c28b9b7e80 Mon Sep 17 00:00:00 2001 From: Yury Pikhtarev Date: Fri, 11 Jul 2025 23:10:43 +0200 Subject: [PATCH] Remove Qodana configuration files - Deleted qodana.yaml and qodana_code_quality.yml files as part of the cleanup process. These files were previously used for Qodana analysis and GitHub workflows but are no longer needed. --- .github/workflows/qodana_code_quality.yml | 33 --------------------- qodana.yaml | 35 ----------------------- 2 files changed, 68 deletions(-) delete mode 100644 .github/workflows/qodana_code_quality.yml delete mode 100644 qodana.yaml diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml deleted file mode 100644 index 2375feeca..000000000 --- a/.github/workflows/qodana_code_quality.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Qodana - -on: - workflow_dispatch: - pull_request: - push: - branches: - - main - - dexter - -jobs: - qodana: - runs-on: ubuntu-latest - - permissions: - contents: write - pull-requests: write - checks: write - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit - fetch-depth: 0 # a full history is required for pull request analysis - - - name: Qodana Scan - uses: JetBrains/qodana-action@v2025.1 - with: - pr-mode: false - env: - QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} - QODANA_ENDPOINT: 'https://qodana.cloud' diff --git a/qodana.yaml b/qodana.yaml deleted file mode 100644 index 563d70c24..000000000 --- a/qodana.yaml +++ /dev/null @@ -1,35 +0,0 @@ -#-------------------------------------------------------------------------------# -# Qodana analysis is configured by qodana.yaml file # -# https://www.jetbrains.com/help/qodana/qodana-yaml.html # -#-------------------------------------------------------------------------------# -version: "1.0" -profile: - name: qodana.recommended -php: - version: "8.4" -linter: jetbrains/qodana-php:2025.1 -include: - - name: CheckDependencyLicenses - - name: PhpComposerExtensionStubsInspection - - name: PhpIncludeInspection - - name: PhpUnhandledExceptionInspection - - name: PhpCastIsUnnecessaryInspection - - name: PhpRedundantOptionalArgumentInspection - - name: PhpRangesInClassCanBeMergedInspection - - name: PhpMissingReturnTypeInspection - - name: PhpMissingFieldTypeInspection - - name: PhpDocMissingThrowsInspection - - name: PhpLoopCanBeConvertedToArrayMapInspection - - name: PhpInconsistentReturnPointsInspection - - name: PhpFullyQualifiedNameUsageInspection - - name: PhpDefineCanBeReplacedWithConstInspection - - name: PhpConditionAlreadyCheckedInspection - - name: PhpConcatenationWithEmptyStringCanBeInlinedInspection - - name: PhpSwitchCanBeReplacedWithMatchExpressionInspection - - name: PhpPluralMixedCanBeReplacedWithArrayInspection - - name: PhpMixedReturnTypeCanBeReducedInspection - - name: PhpIfWithCommonPartsInspection -exclude: - - name: All - paths: - - legacy