bots-garden/mini-mepublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/bots-garden/mini-me.git
git clone ssh://git@rickub.com/bots-garden/mini-me.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

qlty.toml · 94 lines · 2.2 KBTOML Blame HistoryRaw
💾 Saved. d722711 k33g 3h ago1# This file was automatically generated by `qlty init`.
2# You can modify it to suit your needs.
3# We recommend you to commit this file to your repository.
4#
5# This configuration is used by both Qlty CLI and Qlty Cloud.
6#
7# Qlty CLI -- Code quality toolkit for developers
8# Qlty Cloud -- Fully automated Code Health Platform
9#
10# Try Qlty Cloud: https://qlty.sh
11#
12# For a guide to configuration, visit https://qlty.sh/d/config
13# Or for a full reference, visit https://qlty.sh/d/qlty-toml
14config_version = "0"
15
16exclude_patterns = [
17 "*_min.*",
18 "*-min.*",
19 "*.min.*",
20 "**/.yarn/**",
21 "**/*.d.ts",
22 "**/assets/**",
23 "**/bower_components/**",
24 "**/build/**",
25 "**/cache/**",
26 # "**/config/**" is a qlty default, removed here: internal/config is project
27 # code (the YAML settings loader) and must be measured like the rest.
28 "**/db/**",
29 "**/deps/**",
30 "**/dist/**",
31 "**/extern/**",
32 "**/external/**",
33 "**/generated/**",
34 "**/Godeps/**",
35 "**/gradlew/**",
36 "**/mvnw/**",
37 "**/node_modules/**",
38 "**/protos/**",
39 "**/seed/**",
40 "**/target/**",
41 "**/templates/**",
42 "**/testdata/**",
43 "**/vendor/**",
44 # Excluded at the user's request (2026-09-15):
45 # kits/ is the vendored dev-toolkit kit — the sources installed into
46 # ~/.claude/, including the quality skill's own quality_report.py, so leaving
47 # it in scope would measure the instrument with itself (its subprocess use is
48 # flagged by every Python security linter and cannot be fixed).
49 "kits/**",
50 # tmp/ holds a draft agent (tmp/draft-agent) and a cross-compile script
51 # (tmp/build.sh) that are not part of the mm binary or its tests.
52 "tmp/**",
53]
54
55test_patterns = [
56 "**/test/**",
57 "**/spec/**",
58 "**/*.test.*",
59 "**/*.spec.*",
60 "**/*_test.*",
61 "**/*_spec.*",
62 "**/test_*.*",
63 "**/spec_*.*",
64]
65
66[smells]
67mode = "comment"
68
69[[source]]
70name = "default"
71default = true
72
73
74[[plugin]]
75name = "ripgrep"
76mode = "comment"
77
78[[plugin]]
79name = "shellcheck"
80
81[[plugin]]
82name = "trufflehog"
83
84# `qlty init` only looks at files git tracks, and at init time every Go file of
85# this project was still untracked, so it enabled none of the Go plugins. These
86# are the ones it enables when it does see Go code.
87[[plugin]]
88name = "gofmt"
89
90[[plugin]]
91name = "golangci-lint"
92
93[[plugin]]
94name = "osv-scanner"