-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy path.claudelint.yaml
More file actions
79 lines (60 loc) · 1.41 KB
/
.claudelint.yaml
File metadata and controls
79 lines (60 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# claudelint configuration for AIPCC AI helpers
# https://github.com/stbenjam/claudelint
# Load custom rules (paths relative to repository root)
custom-rules:
- .claudelint-custom.py
rules:
# Plugin structure rules
plugin-json-required:
enabled: true
severity: error
plugin-json-valid:
enabled: true
severity: error
plugin-naming:
enabled: true
severity: warning
commands-dir-required:
enabled: false # Plugins can have just skills or hooks
severity: warning
commands-exist:
enabled: false # Plugins can have just skills or hooks
severity: info
plugin-readme:
enabled: true
severity: warning
# Command format rules
command-naming:
enabled: true
severity: warning
command-frontmatter:
enabled: true
severity: error
command-sections:
enabled: true
severity: warning
command-name-format:
enabled: true
severity: warning
# Marketplace rules
marketplace-json-valid:
enabled: auto
severity: error
marketplace-registration:
enabled: auto
severity: error
# Skills rules
skill-frontmatter:
enabled: true
severity: warning
# Custom rules for plugin documentation
plugins-doc-up-to-date:
enabled: true
severity: error
tools-yaml-validation:
enabled: true
severity: error
# Exclude patterns
exclude: []
# Treat warnings as errors in CI
strict: false