fix: remove unused fs imports in 3 hook scripts

readFile utility replaced direct fs usage but the imports weren't
removed, causing ESLint no-unused-vars failures in CI.
This commit is contained in:
Affaan Mustafa
2026-02-12 15:33:51 -08:00
parent e7b5c62eb7
commit 3546abc6ea
3 changed files with 0 additions and 3 deletions

View File

@@ -9,7 +9,6 @@
* before committing.
*/
const fs = require('fs');
const { readFile } = require('../lib/utils');
const MAX_STDIN = 1024 * 1024; // 1MB limit

View File

@@ -9,7 +9,6 @@
*/
const { execFileSync } = require('child_process');
const fs = require('fs');
const MAX_STDIN = 1024 * 1024; // 1MB limit
let data = '';

View File

@@ -9,7 +9,6 @@
* sessions and learned skills.
*/
const fs = require('fs');
const {
getSessionsDir,
getLearnedSkillsDir,