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:
parent
e7b5c62eb7
commit
3546abc6ea
|
|
@ -9,7 +9,6 @@
|
|||
* before committing.
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
const { readFile } = require('../lib/utils');
|
||||
|
||||
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
*/
|
||||
|
||||
const { execFileSync } = require('child_process');
|
||||
const fs = require('fs');
|
||||
|
||||
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
||||
let data = '';
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
* sessions and learned skills.
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
const {
|
||||
getSessionsDir,
|
||||
getLearnedSkillsDir,
|
||||
|
|
|
|||
Loading…
Reference in New Issue