Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(ignore): Expand default ignore patterns to include subdirect… #94

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/config/defaultIgnore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export const defaultIgnoreList = [
// Logs
'logs/**',
'**/*.log',
'npm-debug.log*',
'yarn-debug.log*',
'yarn-error.log*',
'**/npm-debug.log*',
'**/yarn-debug.log*',
'**/yarn-error.log*',

// Runtime data
'pids/**',
Expand Down Expand Up @@ -52,7 +52,7 @@ export const defaultIgnoreList = [
'typings/**',

// Optional npm cache directory
'.npm/**',
'**/.npm/**',

// Optional eslint cache
'.eslintcache',
Expand All @@ -64,10 +64,10 @@ export const defaultIgnoreList = [
'*.tgz',

// Yarn files
'.yarn/**',
'**/.yarn/**',

// Yarn Integrity file
'.yarn-integrity',
'**/.yarn-integrity',

// dotenv environment variables file
'.env',
Expand Down Expand Up @@ -106,9 +106,9 @@ export const defaultIgnoreList = [
'**/*.bak',

// Package manager locks
'package-lock.json',
'yarn.lock',
'pnpm-lock.yaml',
'**/package-lock.json',
'**/yarn.lock',
'**/pnpm-lock.yaml',

// Build outputs
'build/**',
Expand All @@ -124,11 +124,11 @@ export const defaultIgnoreList = [
// Essential Python-related entries
'**/__pycache__/**',
'**/*.py[cod]',
'venv/**',
'.venv/**',
'.pytest_cache/**',
'.mypy_cache/**',
'.ipynb_checkpoints/**',
'Pipfile.lock',
'poetry.lock',
'**/venv/**',
'**/.venv/**',
'**/.pytest_cache/**',
'**/.mypy_cache/**',
'**/.ipynb_checkpoints/**',
'**/Pipfile.lock',
'**/poetry.lock',
];
Loading