mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02: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
3 changed files with 0 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue