-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
50 lines (45 loc) · 1.18 KB
/
sonar-project.properties
File metadata and controls
50 lines (45 loc) · 1.18 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
sonar.projectKey=FoleyBridge-Solutions_Nestogy
sonar.organization=foleybridge-solutions
sonar.php.coverage.reportPaths=coverage.xml
sonar.sources=.
sonar.tests=tests
sonar.sourceEncoding=UTF-8
# Exclude vendor dependencies, generated files, and backup documentation
sonar.exclusions=\
**/vendor/**,\
**/node_modules/**,\
**/storage/**,\
**/bootstrap/cache/**,\
**/public/**,\
**/database/**,\
**/config/**,\
**/lang/**,\
**/tests/**,\
**/docs-backup/**,\
_ide_helper.php,\
_ide_helper_models.php,\
.phpstorm.meta.php,\
**/docs-backup/**,\
**/*.min.js,\
**/*.min.css
# Exclude test files from duplication detection
sonar.cpd.exclusions=\
**/tests/**,\
**/database/factories/**,\
**/database/seeders/**
# Exclude third-party and generated code from coverage
sonar.coverage.exclusions=\
**/vendor/**,\
**/node_modules/**,\
**/tests/**,\
**/database/migrations/**,\
**/database/factories/**,\
**/database/seeders/**,\
_ide_helper.php,\
_ide_helper_models.php,\
.phpstorm.meta.php,\
**/_ide_helper*.php,\
**/.phpstorm.meta.php,\
**/bootstrap/cache/**,\
**/config/**,\
**/public/**