UNPKG

scai

Version:

> AI-powered CLI tool for commit messages **and** pull request reviews — using local models.

46 lines (45 loc) 1.02 kB
// List of folders and file globs to ignore during indexing and scanning. // These patterns are used by fast-glob in all commands. export const IGNORED_FOLDER_GLOBS = [ '**/node_modules/**', '**/dist/**', '**/build/**', '**/target/**', '**/coverage/**', '**/.git/**', '**/.next/**', '**/.vercel/**', '**/.idea/**', '**/.vscode/**', '**/__pycache__/**', '**/.venv/**', '**/env/**', '**/.gradle/**', '**/.output/**', '**/tmp/**', '**/*.test.*', '**/.m2/**', '**/.gradle/**', '**/.tox/**', '**/.nox/**', '**/.hypothesis/**', '**/.npm/**', '**/.yarn/**', '**/*.o', '**/*.out', '**/*.exe', '**/*.dll', '**/.cache/**', '**/.pylint.d/**', '**/.eslintcache/**', '**/.cache-loader/**', '**/.serverless/**', '**/.docker/**', '**/.sublime-workspace', '**/.sublime-project', '**/*.log', '**/npm-debug.log', '**/yarn-error.log', '**/debug.log', '**/Dockerfile', ];