mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-17 16:33:13 +08:00
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.
|
* before committing.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
const { readFile } = require('../lib/utils');
|
const { readFile } = require('../lib/utils');
|
||||||
|
|
||||||
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
||||||
|
|||||||
@ -9,7 +9,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const { execFileSync } = require('child_process');
|
const { execFileSync } = require('child_process');
|
||||||
const fs = require('fs');
|
|
||||||
|
|
||||||
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
const MAX_STDIN = 1024 * 1024; // 1MB limit
|
||||||
let data = '';
|
let data = '';
|
||||||
|
|||||||
@ -9,7 +9,6 @@
|
|||||||
* sessions and learned skills.
|
* sessions and learned skills.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
const {
|
const {
|
||||||
getSessionsDir,
|
getSessionsDir,
|
||||||
getLearnedSkillsDir,
|
getLearnedSkillsDir,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user