# Ignoring Secrets via Code Comments

While you can use the Aikido UI to snooze or ignore secrets, you may also mark secrets as safe via code comments.

Aikido utilizes a modified version of Gitleaks under the hood, so you may mark secrets as safe by adding the string "gitleaks:allow" to the line with the secret.

An example for javascript:

`var a = "live_cdrBarsVQi4EGFRJi" // gitleaks:allow`

An example for python:

`a = "live_cdrBarsVQi4EGFRJi" # gitleaks:allow`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.aikido.dev/code-scanning/scanning-practices/ignoring-secrets-via-code-comments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
