In the context of trading, "TS" often refers to (a popular trading platform) or simply Time Series analysis. A "TS Screener" is a tool used to filter financial instruments (stocks, forex, crypto) based on technical indicators.
✅ Files scanned: 124 🎯 Type coverage: 94.2% ⚠️ Total 'any' usage: 3 ❓ Missing type annotations: 12 🏁 Status: PASSED ✅ ts screener
);
export type ScreenerReport = summary: filesScanned: number; totalAnyUsage: number; totalMissingTypes: number; typeCoveragePercent: number; passed: boolean; ; details: FileReport[]; ; In the context of trading, "TS" often refers
This gives you a production-ready, extensible TypeScript quality gate. Want me to add a or IDE plugin next? Want me to add a or IDE plugin next
program .name('ts-screener') .description('Analyze TypeScript type coverage and any usage') .option('-i, --include <patterns>', 'glob patterns to include', ' /*.ts,tsx') .option('-e, --exclude <patterns>', 'glob patterns to exclude', 'node_modules/ ') .option('--target-coverage <number>', 'minimum type coverage %', '80') .option('--json', 'output as JSON') .option('--no-implicit-any', 'fail on implicit any') .action(async (options) => const screener = new TypeScriptScreener( include: options.include.split(','), exclude: options.exclude.split(','), targetTypeCoverage: parseFloat(options.targetCoverage), noImplicitAny: options.noImplicitAny, );