@felixgeelhaar/cclint
Version:
A comprehensive linter for CLAUDE.md files with multi-language code block validation
52 lines • 1.31 kB
JavaScript
export const defaultConfig = {
rules: {
'file-size': {
enabled: true,
severity: 'warning',
options: {
maxSize: 10000,
},
},
structure: {
enabled: true,
severity: 'error',
options: {
requiredSections: [
'Project Overview',
'Development Commands',
'Architecture',
],
},
},
content: {
enabled: true,
severity: 'warning',
options: {
requiredPatterns: ['npm', 'TypeScript', 'test', 'build'],
},
},
format: {
enabled: true,
severity: 'error',
},
'code-blocks': {
enabled: true,
severity: 'warning',
options: {
languages: [
'javascript',
'typescript',
'python',
'go',
'bash',
'sql',
'yaml',
'json',
],
strict: true,
},
},
},
ignore: [],
};
//# sourceMappingURL=Config.js.map