🔥 移除qodana

This commit is contained in:
BTMuli
2025-12-24 17:21:36 +08:00
parent 651a89145f
commit 6e3ca9f6cd
4 changed files with 0 additions and 57 deletions

View File

@@ -1,26 +0,0 @@
name: Qodana
on:
workflow_dispatch:
# push:
# branches:
# - master
jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 24.8.0
- name: setup pnpm
uses: pnpm/action-setup@v2
with:
version: 10.16.1
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: "Qodana Scan"
uses: JetBrains/qodana-action@v2023.3
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

View File

@@ -7,8 +7,6 @@ dist
src-tauri/target src-tauri/target
# Pnpm # Pnpm
pnpm-lock.yaml pnpm-lock.yaml
# Qodana
qodana.yaml
# sourse # sourse
*.webp *.webp
*.png *.png

View File

@@ -27,7 +27,6 @@ export default [
"src/data/**/*.json", "src/data/**/*.json",
"src-tauri/tauri.conf.json", "src-tauri/tauri.conf.json",
"src-tauri/**/*.json", "src-tauri/**/*.json",
"qodana.yaml",
"node_modules", "node_modules",
".github", ".github",
], ],

View File

@@ -1,28 +0,0 @@
# -------------------------------------------------------------------------------#
# Qodana analysis is configured by qodana.yaml file #
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
# -------------------------------------------------------------------------------#
version: "1.0"
# Specify inspection profile for code analysis
profile:
name: qodana.starter
# Enable inspections
# include:
# - name: <SomeEnabledInspectionId>
# Disable inspections
# exclude:
# - name: <SomeDisabledInspectionId>
# paths:
# - <path/where/not/run/inspection>
# The following options are only applied in CI/CD environment
# These options are ignored during local run
# Execute shell command before Qodana execution
# bootstrap: sh ./prepare-qodana.sh
# Install IDE plugins before Qodana execution
# plugins:
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
# Specify Qodana linter for analysis
linter: jetbrains/qodana-js:latest
include:
- name: CheckDependencyLicenses