67 lines
1.2 KiB
TypeScript
67 lines
1.2 KiB
TypeScript
import { Glob } from "@opencode-ai/util/glob"
|
|
|
|
const FOLDERS = new Set([
|
|
"node_modules",
|
|
"bower_components",
|
|
".pnpm-store",
|
|
"vendor",
|
|
".npm",
|
|
"dist",
|
|
"build",
|
|
"out",
|
|
".next",
|
|
"target",
|
|
"bin",
|
|
"obj",
|
|
".git",
|
|
".svn",
|
|
".hg",
|
|
".vscode",
|
|
".idea",
|
|
".turbo",
|
|
".output",
|
|
"desktop",
|
|
".sst",
|
|
".cache",
|
|
".webkit-cache",
|
|
"__pycache__",
|
|
".pytest_cache",
|
|
"mypy_cache",
|
|
".history",
|
|
".gradle",
|
|
])
|
|
|
|
const FILES = [
|
|
"**/*.swp",
|
|
"**/*.swo",
|
|
"**/*.pyc",
|
|
"**/.DS_Store",
|
|
"**/Thumbs.db",
|
|
"**/logs/**",
|
|
"**/tmp/**",
|
|
"**/temp/**",
|
|
"**/*.log",
|
|
"**/coverage/**",
|
|
"**/.nyc_output/**",
|
|
]
|
|
|
|
export const PATTERNS = [...FILES, ...FOLDERS, `**/{${Array.from(FOLDERS).join(",")}}/**`]
|
|
|
|
export function match(filepath: string, opts?: { extra?: string[]; whitelist?: string[] }) {
|
|
for (const pattern of opts?.whitelist || []) {
|
|
if (Glob.match(pattern, filepath)) return false
|
|
}
|
|
|
|
const parts = filepath.split(/[/\\]/)
|
|
for (const part of parts) {
|
|
if (FOLDERS.has(part)) return true
|
|
}
|
|
|
|
for (const pattern of [...FILES, ...(opts?.extra || [])]) {
|
|
if (Glob.match(pattern, filepath)) return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
export * as Ignore from "./ignore"
|