Ce produit n'est pas pris en charge par le site Datadog que vous avez sélectionné. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Datadog Software Composition Analysis (SCA) detects open source libraries and their vulnerabilities in your code. You can exclude specific paths from Static SCA analysis. Configure this setting under the sca key in the Code Security configuration, either in Datadog or in a code-security.datadog.yaml file.

The sca key requires schema-version: v1.1 and supports the following field:

PropertyTypeDescriptionDefault
ignore-pathsArrayFile paths or glob patterns to exclude from Static SCA analysis.None

Example:

schema-version: v1.1
sca:
  ignore-paths:
    - "vendor/"
    - "**/node_modules/**"
    - "third_party/"

For more information on configuration locations, precedence, and merging, see Code Security Configuration Reference.

Further Reading