UNPKG

agentsqripts

Version:

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

16 lines (11 loc) 411 B
// Cleanup test content with issues const unusedVariable = 'never used'; // TODO: Fix this function later function deadFunction() { return 'never called'; } export * from './other'; // Barrel file pattern export { default } from './utils'; // FIXME: This is broken const workingVar = 'used'; console.log(workingVar);