UNPKG

agentsqripts

Version:

Comprehensive static code analysis toolkit for identifying technical debt, security vulnerabilities, performance issues, and code quality problems

30 lines (28 loc) 508 B
/** * @file Default thresholds configuration * @description Single responsibility: Define default thresholds for different file types */ const defaultThresholds = { test: { exports: 10, lines: 500, functions: 20, methods: 15, concerns: 4 }, config: { exports: 20, lines: 300, functions: 5, methods: 5, concerns: 3 }, default: { exports: 3, lines: 300, functions: 10, methods: 8, concerns: 2 } }; module.exports = defaultThresholds;