UNPKG

@sun-asterisk/sunlint

Version:

☀️ SunLint - Multi-language static analysis tool for code quality and security | Sun* Engineering Standards

20 lines (16 loc) 446 B
/** * S015 Dart Analyzer - Insecure TLS Certificate * Delegates to Dart binary analyzer via heuristic-engine */ class DartS015Analyzer { constructor() { this.ruleId = 'S015'; this.language = 'dart'; } async analyze(files, language, options = {}) { // Dart analysis is handled by the Dart binary via heuristic-engine.js // This wrapper enables the router pattern return []; } } module.exports = DartS015Analyzer;