mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
f874b6928e
Adding directories to be ignored by semgrep. These files do not need to be checked and are causing semgrep to fail
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
# This file uses .gitignore syntax:
|
|
#
|
|
# To ignore a file anywhere it occurs in your project, enter a
|
|
# glob pattern here. E.g. "*.min.js".
|
|
#
|
|
# To ignore a directory anywhere it occurs in your project, add
|
|
# a trailing slash to the file name. E.g. "dist/".
|
|
#
|
|
# To ignore a file or directory only relative to the project root,
|
|
# include a slash anywhere except the last character. E.g.
|
|
# "/dist/", or "src/generated".
|
|
#
|
|
# Some parts of .gitignore syntax are not supported, and patterns
|
|
# using this syntax will be dropped from the ignore list:
|
|
# - Explicit "include syntax", e.g. "!kept/".
|
|
# - Multi-character expansion syntax, e.g. "*.py[cod]"
|
|
#
|
|
# To include ignore patterns from another file, start a line
|
|
# with ':include', followed by the path of the file. E.g.
|
|
# ":include path/to/other/ignore/file".
|
|
#
|
|
# To ignore a file with a literal ':' character, escape it with
|
|
# a backslash, e.g. "\:foo".
|
|
|
|
# Ignore git items
|
|
.gitignore
|
|
.git/
|
|
:include .gitignore
|
|
|
|
#spl files may contain eval and other statements that should NOT trigger semgrep warnings
|
|
*.spl
|
|
|
|
#Ignore Markdown and Wiki Pages
|
|
*.md
|
|
*.wiki
|
|
|
|
#Temporarily ignoring this directory as we discuss a path moving forward
|
|
#for Splunk Packaging Toolkit Update Strategy
|
|
/dist/
|
|
|
|
#Don't check yaml files in these directories
|
|
/response_tasks
|
|
/detections
|
|
|
|
|