Skip to content

Commit 132b56b

Browse files
committed
fix: use console.info for debug logging
- Change console.debug to console.info for visibility - Update ESLint config to allow console.info
1 parent 0530c09 commit 132b56b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ export default defineConfig([
1616
document: "readonly",
1717
process: "readonly",
1818
NodeJS: "readonly",
19+
console: "readonly",
1920
},
2021
},
2122
rules: {
2223
"obsidianmd/sample-names": "off",
24+
"no-console": ["error", { allow: ["warn", "error", "debug", "info"] }],
2325
},
2426
},
2527
]);

0 commit comments

Comments
 (0)