Skip to content

Commit

Permalink
Merge pull request #51 from replit/dstewart/bug/ignore-dirs
Browse files Browse the repository at this point in the history
bug/ignore dirs
  • Loading branch information
blast-hardcheese authored Oct 10, 2024
2 parents 1c89236 + aa51f9f commit 5aa3ba1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/pyright-internal/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/pyright-internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pyright-internal",
"displayName": "pyright",
"description": "Type checker for the Python language",
"version": "2.0.11",
"version": "2.0.12",
"license": "MIT",
"private": true,
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class ChokidarFileWatcherProvider implements FileWatcherProvider {
watcherOptions.usePolling = false;
}

const excludes: string[] = ['**/node_modules/**', '**/__pycache__/**', '**/.*'];
const excludes: string[] = ['**/node_modules/**', '**/__pycache__/**', '**/.*', '**/.*/**'];
if (_isMacintosh || _isLinux) {
if (paths.some((path) => path === '' || path === '/')) {
excludes.push('/dev/**');
Expand Down
4 changes: 2 additions & 2 deletions packages/pyright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/pyright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@replit/pyright-extended",
"displayName": "pyright-extended",
"description": "Extending pyright with yapf + ruff",
"version": "2.0.11",
"version": "2.0.12",
"license": "MIT",
"author": {
"name": "Replit"
Expand Down

0 comments on commit 5aa3ba1

Please sign in to comment.