- 更新 CI/CD 子域名反向代理配置 - 调整 Nginx 静态文件服务器配置 - 更新 CONTEXT.md 领域共享语言文档 - 添加 CLAUDE.md 代理工作指南 - 更新 Playwright E2E 测试配置
291 lines
12 KiB
JavaScript
291 lines
12 KiB
JavaScript
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
import { loadDesignSystemForCwd } from '../design-system.mjs';
|
|
import { createBrowserDetector, detectUrl } from '../engines/browser/detect-url.mjs';
|
|
import { detectHtml } from '../engines/static-html/detect-html.mjs';
|
|
import { detectText } from '../engines/regex/detect-text.mjs';
|
|
import {
|
|
filterDetectionFindings,
|
|
readDetectionConfig,
|
|
shouldIgnoreDetectionFile,
|
|
} from '../../lib/impeccable-config.mjs';
|
|
import {
|
|
HTML_EXTENSIONS,
|
|
buildImportGraph,
|
|
detectFrameworkConfig,
|
|
isPortListening,
|
|
walkDir,
|
|
} from '../node/file-system.mjs';
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Output formatting
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function formatFindingSummary(count) {
|
|
return `${count} anti-pattern${count === 1 ? '' : 's'} found.`;
|
|
}
|
|
|
|
function formatFindings(findings, jsonMode) {
|
|
if (jsonMode) return JSON.stringify(findings, null, 2);
|
|
|
|
const grouped = {};
|
|
for (const f of findings) {
|
|
if (!grouped[f.file]) grouped[f.file] = [];
|
|
grouped[f.file].push(f);
|
|
}
|
|
const out = [];
|
|
for (const [file, items] of Object.entries(grouped)) {
|
|
const importNote = items[0]?.importedBy?.length ? ` (imported by ${items[0].importedBy.join(', ')})` : '';
|
|
out.push(`\n${file}${importNote}`);
|
|
for (const item of items) {
|
|
out.push(` ${item.line ? `line ${item.line}: ` : ''}[${item.antipattern}] ${item.snippet}`);
|
|
out.push(` → ${item.description}`);
|
|
}
|
|
}
|
|
out.push(`\n${formatFindingSummary(findings.length)}`);
|
|
return out.join('\n');
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Stdin handling
|
|
// ---------------------------------------------------------------------------
|
|
|
|
async function handleStdin(options = {}) {
|
|
const chunks = [];
|
|
for await (const chunk of process.stdin) chunks.push(chunk);
|
|
const input = Buffer.concat(chunks).toString('utf-8');
|
|
try {
|
|
const parsed = JSON.parse(input);
|
|
const fp = parsed?.tool_input?.file_path;
|
|
if (fp && fs.existsSync(fp)) {
|
|
return HTML_EXTENSIONS.has(path.extname(fp).toLowerCase())
|
|
? detectHtml(fp, options) : detectText(fs.readFileSync(fp, 'utf-8'), fp, options);
|
|
}
|
|
} catch { /* not JSON */ }
|
|
return detectText(input, '<stdin>', options);
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// CLI
|
|
// ---------------------------------------------------------------------------
|
|
|
|
async function confirm(question) {
|
|
const rl = (await import('node:readline')).default.createInterface({
|
|
input: process.stdin, output: process.stderr,
|
|
});
|
|
return new Promise((resolve) => {
|
|
rl.question(`${question} [Y/n] `, (answer) => {
|
|
rl.close();
|
|
resolve(!answer || /^y(es)?$/i.test(answer.trim()));
|
|
});
|
|
});
|
|
}
|
|
|
|
function printUsage() {
|
|
console.log(`Usage: impeccable detect [options] [file-or-dir-or-url...]
|
|
|
|
Scan files or URLs for UI anti-patterns and design quality issues.
|
|
|
|
Options:
|
|
--json Output results as JSON
|
|
--quiet In text mode, only print the final findings count
|
|
--gpt Also report GPT-specific provider tells (off by default)
|
|
--gemini Also report Gemini-specific provider tells (off by default)
|
|
--no-config Do not apply project config, detector ignores, inline
|
|
ignore comments, or DESIGN.md
|
|
--no-inline-ignores Do not honor in-file impeccable-disable* ignore comments
|
|
--no-design-system Do not load local DESIGN.md / .impeccable/design.json context
|
|
--help Show this help message
|
|
|
|
Project config:
|
|
Respects .impeccable/config.json and .impeccable/config.local.json detector
|
|
settings: detector.ignoreRules, detector.ignoreFiles, detector.ignoreValues,
|
|
and detector.designSystem.enabled.
|
|
|
|
Inline ignores:
|
|
In-file comments waive a finding where it lives and travel with the file:
|
|
<!-- impeccable-disable overused-font -- exported brand doc -->
|
|
.brand { font-family: Inter } /* impeccable-disable-line overused-font */
|
|
// impeccable-disable-next-line bounce-easing: intentional bounce
|
|
impeccable-disable applies to the whole file; -line / -next-line are scoped.
|
|
List one or more rule ids (comma-separated), or omit them / use * for all.
|
|
|
|
Detection modes:
|
|
HTML files Static HTML/CSS analysis (default, catches linked CSS)
|
|
Non-HTML files Regex pattern matching (CSS, JSX, TSX, etc.)
|
|
URLs Puppeteer full browser rendering (auto-detected)
|
|
|
|
Examples:
|
|
impeccable detect src/
|
|
impeccable detect index.html
|
|
impeccable detect https://example.com
|
|
impeccable detect --json .
|
|
impeccable detect --no-config src/`);
|
|
}
|
|
|
|
async function detectCli() {
|
|
let args = process.argv.slice(2).map(arg => {
|
|
if (arg === '-json') return '--json';
|
|
if (arg === '-fast') return '--fast';
|
|
return arg;
|
|
});
|
|
if (args[0] === 'detect') args = args.slice(1);
|
|
const jsonMode = args.includes('--json');
|
|
const quietMode = args.includes('--quiet');
|
|
const helpMode = args.includes('--help');
|
|
// --fast (regex-only) is deprecated: since the jsdom removal, the static
|
|
// HTML/CSS analysis is fast and covers every rule, so the regex-only path
|
|
// only loses coverage for no real speed win. Accept the flag for back-compat
|
|
// but ignore it and run the full scan.
|
|
if (args.includes('--fast')) {
|
|
process.stderr.write(
|
|
'Note: --fast is deprecated and ignored. The full scan is fast now and runs every rule.\n',
|
|
);
|
|
}
|
|
const configEnabled = !args.includes('--no-config');
|
|
const detectionConfig = configEnabled
|
|
? readDetectionConfig(process.cwd())
|
|
: { ignoreRules: [], ignoreFiles: [], ignoreValues: [] };
|
|
const providers = [];
|
|
if (args.includes('--gpt')) providers.push('gpt');
|
|
if (args.includes('--gemini')) providers.push('gemini');
|
|
const designSystemEnabled = configEnabled && !args.includes('--no-design-system') && detectionConfig.designSystem?.enabled !== false;
|
|
const designSystem = designSystemEnabled ? loadDesignSystemForCwd(process.cwd()) : null;
|
|
// Inline `impeccable-disable*` waivers are part of the scanned file, so they
|
|
// apply by default. `--no-config` (raw scan) and the dedicated
|
|
// `--no-inline-ignores` both turn them off.
|
|
const inlineIgnoresEnabled = configEnabled && !args.includes('--no-inline-ignores');
|
|
const scanOptions = { providers, inlineIgnores: inlineIgnoresEnabled };
|
|
if (designSystem) scanOptions.designSystem = designSystem;
|
|
const targets = args.filter(a => !a.startsWith('--'));
|
|
|
|
if (helpMode) { printUsage(); process.exit(0); }
|
|
|
|
let allFindings = [];
|
|
|
|
if (!process.stdin.isTTY && targets.length === 0) {
|
|
allFindings = await handleStdin(scanOptions);
|
|
} else {
|
|
const paths = targets.length > 0 ? targets : [process.cwd()];
|
|
const urlTargetCount = paths.filter(target => /^https?:\/\//i.test(target)).length;
|
|
const browserDetector = urlTargetCount > 1 ? await createBrowserDetector() : null;
|
|
|
|
try {
|
|
for (const target of paths) {
|
|
if (/^https?:\/\//i.test(target)) {
|
|
try {
|
|
const scanner = browserDetector
|
|
? (url) => browserDetector.detectUrl(url, scanOptions)
|
|
: (url) => detectUrl(url, scanOptions);
|
|
allFindings.push(...await scanner(target));
|
|
} catch (e) { process.stderr.write(`Error: ${e.message}\n`); }
|
|
continue;
|
|
}
|
|
|
|
const resolved = path.resolve(target);
|
|
let stat;
|
|
try { stat = fs.statSync(resolved); }
|
|
catch { process.stderr.write(`Warning: cannot access ${target}\n`); continue; }
|
|
|
|
if (stat.isDirectory()) {
|
|
// Check for framework dev server config (skip in JSON/quiet modes to avoid polluting output)
|
|
if (!jsonMode && !quietMode) {
|
|
const fwConfig = detectFrameworkConfig(resolved);
|
|
if (fwConfig) {
|
|
const probe = await isPortListening(fwConfig.port, fwConfig.fingerprint);
|
|
if (probe.listening && probe.matched) {
|
|
process.stderr.write(
|
|
`\n${fwConfig.name} dev server detected on localhost:${fwConfig.port}.\n` +
|
|
`For more accurate results, scan the running site:\n` +
|
|
` npx impeccable detect http://localhost:${fwConfig.port}\n\n`
|
|
);
|
|
} else if (probe.listening && !probe.matched) {
|
|
process.stderr.write(
|
|
`\n${fwConfig.name} project detected (${path.basename(fwConfig.configPath)}).\n` +
|
|
`Port ${fwConfig.port} is in use by another service. Start the ${fwConfig.name} dev server and scan via URL for best results.\n\n`
|
|
);
|
|
} else {
|
|
process.stderr.write(
|
|
`\n${fwConfig.name} project detected (${path.basename(fwConfig.configPath)}).\n` +
|
|
`Start the dev server and scan via URL for best results:\n` +
|
|
` npx impeccable detect http://localhost:${fwConfig.port}\n\n`
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
const files = walkDir(resolved)
|
|
.filter(file => !shouldIgnoreDetectionFile(file, process.cwd(), detectionConfig));
|
|
const htmlCount = files.filter(f => HTML_EXTENSIONS.has(path.extname(f).toLowerCase())).length;
|
|
|
|
// Warn and confirm if scanning many files (static HTML/CSS processes each HTML file)
|
|
if (files.length > 50 && process.stdin.isTTY && !jsonMode && !quietMode) {
|
|
process.stderr.write(
|
|
`\nFound ${files.length} files (${htmlCount} HTML) in ${target}.\n` +
|
|
`Scanning may take a while${htmlCount > 10 ? ' (static HTML/CSS processes each HTML file individually)' : ''}.\n` +
|
|
`Target a specific subdirectory to narrow scope.\n`
|
|
);
|
|
const ok = await confirm('Continue?');
|
|
if (!ok) { process.stderr.write('Aborted.\n'); process.exit(0); }
|
|
}
|
|
|
|
// Build import graph for multi-file awareness
|
|
const graph = buildImportGraph(files);
|
|
// Build reverse map: file -> set of files that import it
|
|
const importedByMap = new Map();
|
|
for (const [importer, imports] of graph) {
|
|
for (const imported of imports) {
|
|
if (!importedByMap.has(imported)) importedByMap.set(imported, new Set());
|
|
importedByMap.get(imported).add(importer);
|
|
}
|
|
}
|
|
|
|
for (const file of files) {
|
|
const ext = path.extname(file).toLowerCase();
|
|
let fileFindings;
|
|
if (HTML_EXTENSIONS.has(ext)) {
|
|
fileFindings = await detectHtml(file, scanOptions);
|
|
} else {
|
|
fileFindings = detectText(fs.readFileSync(file, 'utf-8'), file, scanOptions);
|
|
}
|
|
// Annotate findings with import context
|
|
const importers = importedByMap.get(file);
|
|
if (importers && importers.size > 0) {
|
|
const importerNames = [...importers].map(f => path.basename(f));
|
|
for (const f of fileFindings) {
|
|
f.importedBy = importerNames;
|
|
}
|
|
}
|
|
allFindings.push(...fileFindings);
|
|
}
|
|
} else if (stat.isFile()) {
|
|
if (shouldIgnoreDetectionFile(resolved, process.cwd(), detectionConfig)) continue;
|
|
const ext = path.extname(resolved).toLowerCase();
|
|
if (HTML_EXTENSIONS.has(ext)) {
|
|
allFindings.push(...await detectHtml(resolved, scanOptions));
|
|
} else {
|
|
allFindings.push(...detectText(fs.readFileSync(resolved, 'utf-8'), resolved, scanOptions));
|
|
}
|
|
}
|
|
}
|
|
} finally {
|
|
if (browserDetector) await browserDetector.close();
|
|
}
|
|
}
|
|
|
|
allFindings = filterDetectionFindings(allFindings, detectionConfig);
|
|
|
|
if (allFindings.length > 0) {
|
|
if (jsonMode) process.stdout.write(formatFindings(allFindings, true) + '\n');
|
|
else if (quietMode) process.stderr.write(formatFindingSummary(allFindings.length) + '\n');
|
|
else process.stderr.write(formatFindings(allFindings, false) + '\n');
|
|
process.exit(2);
|
|
}
|
|
if (jsonMode) process.stdout.write('[]\n');
|
|
process.exit(0);
|
|
}
|
|
|
|
export { formatFindings, handleStdin, confirm, printUsage, detectCli };
|