qodana.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. #-------------------------------------------------------------------------------#
  2. # Qodana analysis is configured by qodana.yaml file #
  3. # https://www.jetbrains.com/help/qodana/qodana-yaml.html #
  4. #-------------------------------------------------------------------------------#
  5. version: "1.0"
  6. #Specify inspection profile for code analysis
  7. profile:
  8. name: qodana.starter
  9. #Enable inspections
  10. #include:
  11. # - name: <SomeEnabledInspectionId>
  12. #Disable inspections
  13. #exclude:
  14. # - name: <SomeDisabledInspectionId>
  15. # paths:
  16. # - <path/where/not/run/inspection>
  17. projectJDK: 20 #(Applied in CI/CD pipeline)
  18. #Execute shell command before Qodana execution (Applied in CI/CD pipeline)
  19. #bootstrap: sh ./prepare-qodana.sh
  20. #Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
  21. #plugins:
  22. # - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
  23. #Specify Qodana linter for analysis (Applied in CI/CD pipeline)
  24. linter: jetbrains/qodana-jvm-community:latest