mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-22 14:23:57 -07:00
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:
parent
e89820b8a4
commit
dfd4f1a7b8
2 changed files with 0 additions and 68 deletions
33
.github/workflows/qodana_code_quality.yml
vendored
33
.github/workflows/qodana_code_quality.yml
vendored
|
@ -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'
|
35
qodana.yaml
35
qodana.yaml
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue