UNPKG

agentsqripts

Version:

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

18 lines (16 loc) 674 B
/** * @file React-specific bug detector * @description Re-exports the refactored React pattern detectors */ const detectReactPatterns = require('./react-pattern/detectReactPatterns'); const detectMissingKeys = require('./react-pattern/detect/detectMissingKeys'); const detectHooksViolations = require('./react-pattern/detect/detectHooksViolations'); const detectStateInRender = require('./react-pattern/detect/detectStateInRender'); const detectMissingDependencies = require('./react-pattern/detect/detectMissingDependencies'); module.exports = { detectReactPatterns, detectMissingKeys, detectHooksViolations, detectStateInRender, detectMissingDependencies };