defaultIgnorePatterns top-level constant
Files/dirs to always ignore during searches.
Implementation
const defaultIgnorePatterns = <String>[
'node_modules',
'.git',
'.svn',
'.hg',
'__pycache__',
'.pytest_cache',
'.mypy_cache',
'.tox',
'venv',
'.venv',
'env',
'dist',
'build',
'out',
'target',
'.next',
'.nuxt',
'.cache',
'.parcel-cache',
'coverage',
'.nyc_output',
'.dart_tool',
'.flutter-plugins',
'.flutter-plugins-dependencies',
'.packages',
'.pub-cache',
'ios/Pods',
'android/.gradle',
'.idea',
'.vscode',
'*.min.js',
'*.min.css',
'*.map',
'*.lock',
'package-lock.json',
'yarn.lock',
'pnpm-lock.yaml',
'pubspec.lock',
'Cargo.lock',
'Gemfile.lock',
'poetry.lock',
];