UNPKG

scai

Version:

> **A local-first AI CLI for understanding, querying, and iterating on large codebases.** > **100% local • No token costs • No cloud • No prompt injection • Private by design**

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', ];