-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcclint.config.js
More file actions
36 lines (33 loc) · 840 Bytes
/
Copy pathcclint.config.js
File metadata and controls
36 lines (33 loc) · 840 Bytes
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
// cclint configuration for AI context repository
// Context files are symlinked into .claude/ so cclint discovers them naturally.
// Run with --follow-symlinks to lint both project-local and marketplace files.
export default {
agentSchema: {
extend: {
// AskUserQuestion is a valid Claude Code tool not in cclint's built-in list
},
},
commandSchema: {
extend: {
// AskUserQuestion is a valid Claude Code tool not in cclint's built-in list
},
},
rules: {
unknownFields: 'warning',
excludePatterns: [
'**/README.md',
'**/TODO.md',
'**/claude-code-dev-kit/**',
'**/01-*/**',
'**/02-*/**',
'**/03-*/**',
'**/04-*/**',
'**/05-*/**',
'**/06-*/**',
'**/07-*/**',
'**/08-*/**',
'**/09-*/**',
'**/10-*/**',
],
},
}