qodana.yaml 983 B

1234567891011121314151617181920212223242526272829
  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 IDE code to run analysis without container (Applied in CI/CD pipeline)
  7. ide: QDNET
  8. #Specify inspection profile for code analysis
  9. profile:
  10. name: qodana.starter
  11. #Enable inspections
  12. #include:
  13. # - name: <SomeEnabledInspectionId>
  14. #Disable inspections
  15. #exclude:
  16. # - name: <SomeDisabledInspectionId>
  17. # paths:
  18. # - <path/where/not/run/inspection>
  19. #Execute shell command before Qodana execution (Applied in CI/CD pipeline)
  20. #bootstrap: sh ./prepare-qodana.sh
  21. #Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
  22. #plugins:
  23. # - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)