| 💾 Saved. d722711 k33g 3h ago | 1 | # 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 |
| 14 | config_version = "0" |
| 15 | |
| 16 | exclude_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 | |
| 55 | test_patterns = [ |
| 56 | "**/test/**", |
| 57 | "**/spec/**", |
| 58 | "**/*.test.*", |
| 59 | "**/*.spec.*", |
| 60 | "**/*_test.*", |
| 61 | "**/*_spec.*", |
| 62 | "**/test_*.*", |
| 63 | "**/spec_*.*", |
| 64 | ] |
| 65 | |
| 66 | [smells] |
| 67 | mode = "comment" |
| 68 | |
| 69 | [[source]] |
| 70 | name = "default" |
| 71 | default = true |
| 72 | |
| 73 | |
| 74 | [[plugin]] |
| 75 | name = "ripgrep" |
| 76 | mode = "comment" |
| 77 | |
| 78 | [[plugin]] |
| 79 | name = "shellcheck" |
| 80 | |
| 81 | [[plugin]] |
| 82 | name = "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]] |
| 88 | name = "gofmt" |
| 89 | |
| 90 | [[plugin]] |
| 91 | name = "golangci-lint" |
| 92 | |
| 93 | [[plugin]] |
| 94 | name = "osv-scanner" |