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.
This commit is contained in:
Yury Pikhtarev 2025-07-11 23:10:43 +02:00
commit dfd4f1a7b8
No known key found for this signature in database
2 changed files with 0 additions and 68 deletions

View file

@ -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'

View file

@ -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