qodana.yaml 988 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 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. #Execute shell command before Qodana execution (Applied in CI/CD pipeline)
  18. #bootstrap: sh ./prepare-qodana.sh
  19. #Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
  20. #plugins:
  21. # - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
  22. #Specify Qodana linter for analysis (Applied in CI/CD pipeline)
  23. linter: jetbrains/qodana-js:2024.3