Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .jscpd.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"**/*mocks*.go",
"**/*_test.go",
"**/zz_generated*.go",
"**/patches/**"
"**/patches/**",
"**/vsce/**",
"**/web/ui/**",
"**/desktop/**"
],
"reporters": ["html", "markdown"],
"threshold": 0
Expand Down
8 changes: 6 additions & 2 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ EXCLUDED_DIRECTORIES:
- schemas
- .agents
# web/ui is a self-contained Vite/React app with its own toolchain (tsc + vite build, run in CI),
# so it is excluded from the repo-wide linters here.
FILTER_REGEX_EXCLUDE: (megalinter-reports/.*|web/ui/.*)
# so it is excluded from the repo-wide linters here. desktop/ is a separate cgo Go module
# (webview C bindings, kept out of the static ksail binary); MegaLinter's containerized Go
# analysis cannot import "C" without the desktop C deps installed, so it fails with
# "could not import C" / "webview.HintNone unknown invalid type". Real CI builds and tests
# desktop/ via dedicated jobs, so exclude it from the repo-wide linters here too.
FILTER_REGEX_EXCLUDE: (megalinter-reports/.*|web/ui/.*|desktop/.*)
Comment on lines +37 to +41
SPELL_LYCHEE_FILTER_REGEX_EXCLUDE: (AGENTS\.md|.*\.mdx|docs/src/.*\.md)
# Helm chart templates contain Go template directives ({{ ... }}) and are not valid standalone
# YAML; generated CRDs (controller-gen output) are large and machine-managed. Exclude both from
Expand Down
Loading