diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index 323c099..ae6609c 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -39,13 +39,6 @@ jobs: with: dotnet-version: "10.0.102" - - name: Temporarily disable .editorconfig for Qodana - shell: bash - run: | - if [ -f .editorconfig ]; then - mv .editorconfig .editorconfig.qodana.bak - fi - - name: Run Qodana uses: JetBrains/qodana-action@42dad391966aca8ca344ca2340a7f43a5507e9b2 # v2025.3.1 with: @@ -55,14 +48,6 @@ jobs: upload-result: false use-caches: false - - name: Restore .editorconfig - if: always() - shell: bash - run: | - if [ -f .editorconfig.qodana.bak ]; then - mv .editorconfig.qodana.bak .editorconfig - fi - - name: Run Entry Check if: always() shell: bash