mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-08 10:23:30 +08:00
fix: remove unused imports in test files (ESLint)
- validators.test.js: remove unused execSync (only execFileSync used) - skill-create-output.test.js: remove unused path module
This commit is contained in:
@@ -11,7 +11,7 @@ const assert = require('assert');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const os = require('os');
|
const os = require('os');
|
||||||
const { execSync, execFileSync } = require('child_process');
|
const { execFileSync } = require('child_process');
|
||||||
|
|
||||||
const validatorsDir = path.join(__dirname, '..', '..', 'scripts', 'ci');
|
const validatorsDir = path.join(__dirname, '..', '..', 'scripts', 'ci');
|
||||||
|
|
||||||
|
|||||||
@@ -7,8 +7,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const path = require('path');
|
|
||||||
|
|
||||||
// Import the module
|
// Import the module
|
||||||
const { SkillCreateOutput } = require('../../scripts/skill-create-output');
|
const { SkillCreateOutput } = require('../../scripts/skill-create-output');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user