Skip to content
Snippets Groups Projects
Commit e24857e5 authored by wep23441's avatar wep23441
Browse files

removed practise folder

parent 0ada0bdb
No related branches found
No related tags found
No related merge requests found
__pycache__/
.pytest_cache
.coverage
practise/
node_modules/
\ No newline at end of file
# Common large paths
node_modules/
build/
dist/
vendor/
.env/
.venv/
.tox/
*.min.js
.npm/
.yarn/
# in our case
./case-5-docs/docs/_build/*
./case-5-docs/docs/source/_static/*
test_*
# Common test paths
test/
tests/
testsuite/
*_test.go
\ No newline at end of file
version: 1.0
allowlist:
# Exclude vulnerabilities by CVE ID or specific vulnerability description
vulnerabilities:
- cve: "CVE-2023-31484"
description: "perl-base vulnerability in CPAN.pm"
reason: "Not using perl, it's a false positive"
- cve: "CVE-2023-45853"
description: "zlib vulnerability related to MiniZip"
reason: "Not using MiniZip in the project"
# Exclude specific files or directories from being scanned
files:
- path: "tests_*"
reason: "Test files are excluded from scans"
- path: "_build/*"
reason: "Build artifacts should not be included in the scan"
- path: "_static/*"
reason: "Static files should not be included in the scan"
# Exclude specific code patterns or practices
patterns:
- pattern: "assert"
reason: "Assert is used in tests only, not in production code"
......@@ -3,7 +3,6 @@ include:
variables:
SAST_REPORT_FILE: "gl-sast-report.json"
# ALLOWLIST_FILE: "allowlist.yml"
# SECURE_LOG_LEVEL: "debug"
sast:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment