turbo-editors/turbo-gopublic Fork 0
v1.0.2
Commits
Clone
git clone https://git.rickub.com/turbo-editors/turbo-go.git
git clone ssh://git@rickub.com/turbo-editors/turbo-go.git

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

qlty.toml · 75 lines · 1.8 KBTOML Blame HistoryRaw
📦 Turbo Go 3d7798b k33g 8h 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/**",
27 "**/db/**",
28 "**/deps/**",
29 "**/dist/**",
30 "**/extern/**",
31 "**/external/**",
32 "**/generated/**",
33 "**/Godeps/**",
34 "**/gradlew/**",
35 "**/mvnw/**",
36 "**/node_modules/**",
37 "**/protos/**",
38 "**/seed/**",
39 "**/target/**",
40 "**/templates/**",
41 "**/testdata/**",
42 "**/vendor/**",
43
44 # The vendored kit sources, which are installed into ~/.claude rather than
45 # built here. quality_report.py is the script that *produces* this
46 # measurement, so leaving it in scope means measuring the instrument with
47 # itself. What this pattern hides, as of qlty 0.639.0:
48 # qlty:function-parameters build_report has 7 parameters
49 # qlty:file-complexity quality_report.py, total complexity 73
50 # Both are real defects, and both belong to the kit: they are to be fixed at
51 # the kit's own source, not silenced here for good.
52 "kits/**",
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 = "trufflehog"