Skip to content

Commit

Permalink
feat(editor): add more files to ignore list
Browse files Browse the repository at this point in the history
Added gradlew, gradlew.bat, package-lock.json, yarn.lock, yarn-error.log, and npm-debug.log to the default ignore list in the editor utility.
  • Loading branch information
phodal committed May 27, 2024
1 parent 3d40fe7 commit 72ec08f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Empty file added .autodevignore
Empty file.
6 changes: 6 additions & 0 deletions src/editor/util/ignore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,11 @@ export const DEFAULT_IGNORE_DIRS = [
"__pycache__",
"site-packages",
".cache",
"gradlew",
"gradlew.bat",
"package-lock.json",
"yarn.lock",
"yarn-error.log",
"npm-debug.log"
];
export const defaultIgnoreDir = ignore().add(DEFAULT_IGNORE_DIRS);

0 comments on commit 72ec08f

Please sign in to comment.