mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 08:47:44 +00:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import * as fs from 'node:fs';
|
|
import * as path from 'node:path';
|
|
import ignore from 'ignore';
|
|
|
|
export interface QwenIgnoreFilter {
|
|
isIgnored(filePath: string): boolean;
|
|
getPatterns(): string[];
|
|
}
|
|
|
|
export class QwenIgnoreParser implements QwenIgnoreFilter {
|
|
private projectRoot: string;
|
|
private patterns: string[] = [];
|
|
private ig = ignore();
|
|
|
|
constructor(projectRoot: string) {
|
|
this.projectRoot = path.resolve(projectRoot);
|
|
this.loadPatterns();
|
|
}
|
|
|
|
private loadPatterns(): void {
|
|
const patternsFilePath = path.join(this.projectRoot, '.qwenignore');
|
|
let content: string;
|
|
try {
|
|
content = fs.readFileSync(patternsFilePath, 'utf-8');
|
|
} catch (_error) {
|
|
// ignore file not found
|
|
return;
|
|
}
|
|
|
|
this.patterns = (content ?? '')
|
|
.split('\n')
|
|
.map((p) => p.trim())
|
|
.filter((p) => p !== '' && !p.startsWith('#'));
|
|
|
|
this.ig.add(this.patterns);
|
|
}
|
|
|
|
isIgnored(filePath: string): boolean {
|
|
if (this.patterns.length === 0) {
|
|
return false;
|
|
}
|
|
|
|
if (!filePath || typeof filePath !== 'string') {
|
|
return false;
|
|
}
|
|
|
|
if (
|
|
filePath.startsWith('\\') ||
|
|
filePath === '/' ||
|
|
filePath.includes('\0')
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
const resolved = path.resolve(this.projectRoot, filePath);
|
|
const relativePath = path.relative(this.projectRoot, resolved);
|
|
|
|
if (relativePath === '' || relativePath.startsWith('..')) {
|
|
return false;
|
|
}
|
|
|
|
// Even in windows, Ignore expects forward slashes.
|
|
const normalizedPath = relativePath.replace(/\\/g, '/');
|
|
|
|
if (normalizedPath.startsWith('/') || normalizedPath === '') {
|
|
return false;
|
|
}
|
|
|
|
return this.ig.ignores(normalizedPath);
|
|
}
|
|
|
|
getPatterns(): string[] {
|
|
return this.patterns;
|
|
}
|
|
}
|