qodana.yaml 992 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. #-------------------------------------------------------------------------------#
  3. # Qodana analysis is configured by qodana.yaml file #
  4. # https://www.jetbrains.com/help/qodana/qodana-yaml.html #
  5. #-------------------------------------------------------------------------------#
  6. version: "1.0"
  7. #Specify inspection profile for code analysis
  8. profile:
  9. name: qodana.starter
  10. #Enable inspections
  11. #include:
  12. # - name: <SomeEnabledInspectionId>
  13. #Disable inspections
  14. #exclude:
  15. # - name: <SomeDisabledInspectionId>
  16. # paths:
  17. # - <path/where/not/run/inspection>
  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-js:2024.3