-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.deepsource.toml
More file actions
38 lines (33 loc) · 1.25 KB
/
Copy path.deepsource.toml
File metadata and controls
38 lines (33 loc) · 1.25 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
# DeepSource configuration — conservative, analysis-only.
#
# This file is INERT until the free DeepSource GitHub App is installed on the repository
# (https://app.deepsource.com — free for public/open-source repos, no in-repo token required).
# It adds a second static-analysis layer alongside the existing CI gate (Biome + tsgo + CodeQL +
# Vitest). No [[transformers]] / autofix block is configured, so DeepSource never writes commits
# and needs no access token. Coverage reporting is intentionally omitted (that path needs a token).
version = 1
# Keep generated artifacts, vendored code, and local render dumps out of analysis to avoid noise.
exclude_patterns = [
"dist/**",
"build/**",
"coverage/**",
"reports/**",
"public/locales/**", # generated i18n bundles (source of truth is locales/**)
"graphify-out/**",
".codegraph/**",
"src-tauri/target/**",
"patches/**",
"**/*.tsx.html", # untracked local render artifacts (defensive)
"packages/collab-transport/**", # vendored y-webrtc fork (see VENDOR-FORKS.md)
]
test_patterns = [
"tests/**",
"**/*.test.ts",
"**/*.test.tsx",
]
[[analyzers]]
name = "javascript"
[analyzers.meta]
environment = ["nodejs", "browser"]
dialect = "typescript"
plugins = ["react"]