forked from tharles-freire-heyupcharly/vuln-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
28 lines (22 loc) · 829 Bytes
/
sonar-project.properties
File metadata and controls
28 lines (22 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
sonar.projectKey=vuln-app
sonar.organization=tharles-freire-heyupcharly
sonar.projectName=Vulnerable Node.js Application
sonar.projectVersion=1.0
# Source directories
sonar.sources=.
sonar.exclusions=node_modules/**,dist/**,.github/**,owaspdc/**
# Language specific settings
sonar.javascript.file.suffixes=.js,.jsx
sonar.typescript.file.suffixes=.ts,.tsx
# Test settings
sonar.test.inclusions=**/*.test.js,**/*.spec.js
sonar.coverage.exclusions=**/*.test.js,**/*.spec.js
# Security settings for vulnerable app analysis
sonar.security.hotspots.inherited=true
sonar.security.hotspots.checkType=true
sonar.qualitygate.wait=false
# Project description
sonar.projectDescription=A deliberately vulnerable Node.js application for security testing and education
# Analysis settings
sonar.sourceEncoding=UTF-8
sonar.scm.provider=git