- Add comprehensive README with architecture overview and quick start guide - Set up Go module with production-ready dependencies - Configure build system with Makefile for development and production builds - Add Docker Compose for local development environment - Include project configuration files (linting, Python, etc.) This establishes the foundation for a production-ready ML experiment platform with task queuing, monitoring, and modern CLI/API interface.
79 lines
1.3 KiB
YAML
79 lines
1.3 KiB
YAML
---
|
|
version: "2"
|
|
run:
|
|
timeout: 5m
|
|
tests: true
|
|
output:
|
|
format: colored-line-number
|
|
linters-settings:
|
|
govet:
|
|
enable:
|
|
- shadow
|
|
- fieldalignment
|
|
gocyclo:
|
|
min-complexity: 15
|
|
dupl:
|
|
threshold: 100
|
|
goconst:
|
|
min-len: 3
|
|
min-occurrences: 3
|
|
misspell:
|
|
locale: US
|
|
lll:
|
|
line-length: 100
|
|
revive:
|
|
confidence: 0.8
|
|
depguard:
|
|
rules:
|
|
main:
|
|
allow:
|
|
- $gostd
|
|
- github.com/jfraeys/fetch_ml
|
|
linters:
|
|
disable-all: true
|
|
enable:
|
|
- bodyclose
|
|
- depguard
|
|
- dogsled
|
|
- dupl
|
|
- errcheck
|
|
- exhaustive
|
|
- gochecknoinits
|
|
- goconst
|
|
- gocritic
|
|
- gocyclo
|
|
- goprintffuncname
|
|
- gosec
|
|
- govet
|
|
- ineffassign
|
|
- lll
|
|
- misspell
|
|
- nakedret
|
|
- noctx
|
|
- nolintlint
|
|
- rowserrcheck
|
|
- staticcheck
|
|
- unconvert
|
|
- unparam
|
|
- unused
|
|
- whitespace
|
|
- revive
|
|
issues:
|
|
exclude-rules:
|
|
- path: _test\.go
|
|
linters:
|
|
- gocyclo
|
|
- errcheck
|
|
- dupl
|
|
- gosec
|
|
- lll
|
|
- text: "weak cryptographic primitive"
|
|
linters:
|
|
- gosec
|
|
- text: "Use of weak random number generator"
|
|
linters:
|
|
- gosec
|
|
max-issues-per-linter: 0
|
|
max-same-issues: 0
|
|
severity:
|
|
default-severity: error
|