scai
Version:
> **AI-powered CLI for local code analysis, commit message suggestions, and natural-language queries.** 100% local, private, GDPR-friendly, made in Denmark/EU with ❤️.
46 lines (45 loc) • 1.02 kB
JavaScript
// 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',
];