diff --git a/qodana-js.yaml b/qodana-js.yaml deleted file mode 100644 index a17aa765e..000000000 --- a/qodana-js.yaml +++ /dev/null @@ -1,20 +0,0 @@ ---- -version: "1.0" -linter: jetbrains/qodana-js:2023.1-eap - -bootstrap: | - # install npm dependencies - npm install - -exclude: - - name: All - paths: - - gh-pages - -failThreshold: 100 - -include: - - name: CheckDependencyLicenses - -profile: - name: qodana.recommended diff --git a/qodana-python.yaml b/qodana-python.yaml deleted file mode 100644 index c2c29cb26..000000000 --- a/qodana-python.yaml +++ /dev/null @@ -1,32 +0,0 @@ ---- -version: "1.0" -linter: jetbrains/qodana-python:2023.1-eap - -bootstrap: | - # setup python - - # qodana removed pyenv in 2023.1 - https://github.com/JetBrains/Qodana/discussions/149 - # downloading and modifying the xml file on the fly is hacky - - # pyenv install 3.9.15 - # pyenv global 3.9.15 - python3 -m venv /data/cache/venv - source /data/cache/venv/bin/activate - python3 -m pip install -r /data/project/requirements-dev.txt - - # remove idea directory (No Python interpreter configured for the project) - # https://github.com/JetBrains/Qodana/discussions/134#discussioncomment-4329981 - rm -rf .idea - -exclude: - - name: All - paths: - - gh-pages - -failThreshold: 100 - -include: - - name: CheckDependencyLicenses - -profile: - name: qodana.recommended