mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-05 23:03:55 +00:00
1ae8035470
- [x] Add golangci.yml configuration with fieldalignment linter - [x] Implement observation graph structure with edge detection - [x] Add LEANN-inspired hybrid vector storage with hub threshold - [x] Implement graph-aware search with selective recomputation - [x] Add auto-tuner for dynamic hub threshold adjustment - [x] Add graph and vector metrics tracking and reporting - [x] Extend configuration for graph parameters - [x] Add graph rebuild background service with periodic updates - [x] Add HTTP endpoints for graph stats and vector metrics - [x] Update UI with advanced metrics sidebar panel - [x] Implement AST-aware code chunking for Go, Python, TypeScript
36 lines
602 B
YAML
36 lines
602 B
YAML
linters-settings:
|
|
govet:
|
|
enable:
|
|
- fieldalignment
|
|
errcheck:
|
|
# Ignore error checks in test files for common test helpers
|
|
exclude-functions:
|
|
- (io.Closer).Close
|
|
- (*encoding/json.Encoder).Encode
|
|
- (io.Writer).Write
|
|
|
|
linters:
|
|
enable:
|
|
- errcheck
|
|
- gosec
|
|
- govet
|
|
- gofmt
|
|
- staticcheck
|
|
- unused
|
|
- ineffassign
|
|
- typecheck
|
|
|
|
issues:
|
|
exclude-dirs:
|
|
- vendor
|
|
# Exclude some linters from running on test files
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- errcheck
|
|
- gosec
|
|
|
|
run:
|
|
timeout: 5m
|
|
tests: true
|