Skip to content

Commit a24d4e7

Browse files
authored
fix: eslint (#248)
* fix: eslint * fix gitignore
1 parent e33d24c commit a24d4e7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,6 @@ dist
106106
/lib
107107
/dist-ts
108108
/index.d.ts
109+
110+
# Agents
111+
.claude

explorer/shim/path.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const path = {
44
module.exports = new Proxy(path, {
55
get(_t, p) {
66
if (!path[p]) {
7+
// eslint-disable-next-line no-console -- Log the missing path methods for debugging purposes.
78
console.log(p);
89
}
910
return path[p];

0 commit comments

Comments
 (0)