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