-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
63 lines (54 loc) · 1.58 KB
/
sonar-project.properties
File metadata and controls
63 lines (54 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
sonar.projectKey=slimshadyme_pixelated
sonar.organization=slimshadyme
sonar.sourceEncoding=UTF-8
# Keep analysis focused on the deployed web app and CI surfaces rather than
# every large experimental, admin, or auxiliary subtree in the checkout.
sonar.sources=src,scripts,config,ci-cd,docker
# The JS/TS analyzer runs in an embedded Node process. Cap it below the old
# 4Gi setting, but leave enough headroom to avoid bridge crashes on this repo.
sonar.javascript.node.maxspace=3072
sonar.typescript.tsconfigPaths=tsconfig.json,config/tsconfig.json
sonar.exclusions=\
**/node_modules/**,\
**/.pnpm/**,\
**/.git/**,\
**/.astro/**,\
**/.scannerwork/**,\
**/.venv/**,\
**/.cursor/**,\
**/.claude/**,\
**/.agent/**,\
**/.notes/**,\
**/dist/**,\
**/coverage/**,\
**/public/**,\
**/docs/**,\
**/business-strategy-cms/**,\
**/worktrees/**,\
**/src/pages/demo/**,\
**/src/pages/dev/**,\
**/src/components/admin/**,\
**/src/components/demo/**,\
**/src/components/demos/**,\
**/src/components/journal-research/**,\
**/src/lib/ai/**,\
**/src/lib/business-strategy/**,\
**/src/lib/deployment/**,\
**/src/lib/fhe/**,\
**/src/lib/governance/**,\
**/src/lib/metaaligner/**,\
**/src/lib/research/**,\
**/*.min.js,\
**/*.bundle.js
sonar.test.exclusions=\
**/tests/**,\
**/__tests__/**,\
**/*.test.*,\
**/*.spec.*
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=pixelated
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8