Skip to content

Commit cd6a982

Browse files
committed
Address linting issues
1 parent 3140e95 commit cd6a982

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

claude-config-composer/src/cli/utils/display.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type {
44
OptionalCFonts,
55
OptionalBoxen,
66
OptionalNodeEmoji,
7-
} from '../../types/optional-deps.js';
7+
} from '../../types/optional-deps';
88

99
// Try to load fancy visual dependencies if available
1010
let hasVisuals = false;

claude-config-composer/src/merger/component-merger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import yaml from 'js-yaml';
22
import type { Agent, Command, Hook, Settings } from '../parser/config-parser';
3-
import type { HooksConfig, StatusLine, HookEntry, HookCommand } from '../types/config.js';
3+
import type { HooksConfig, StatusLine, HookEntry, HookCommand } from '../types/config';
44

55
/**
66
* Handles the intelligent merging of configuration components from multiple sources

claude-config-composer/src/parser/config-parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'fs/promises';
22
import yaml from 'js-yaml';
33
import path from 'path';
44
import { ConfigurationError, ErrorHandler, FileSystemError } from '../utils/error-handler';
5-
import type { HooksConfig, StatusLine, CodeRules, ComponentPatterns, ImportOrder, TestingFramework, BuildTools } from '../types/config.js';
5+
import type { HooksConfig, StatusLine, CodeRules, ComponentPatterns, ImportOrder, TestingFramework, BuildTools } from '../types/config';
66

77
/**
88
* Represents an AI agent configuration with specialized capabilities

claude-config-composer/src/ui/cli-visuals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type {
44
OptionalCFonts,
55
OptionalNodeEmoji,
66
OptionalBoxen,
7-
} from '../types/optional-deps.js';
7+
} from '../types/optional-deps';
88

99
// Try to load optional visual dependencies with fallbacks
1010
let gradient: OptionalGradientString;

claude-config-composer/src/ui/visual-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77
OptionalCreateSpinner,
88
OptionalCliProgress,
99
OptionalTerminalLink,
10-
} from '../types/optional-deps.js';
10+
} from '../types/optional-deps';
1111

1212
// Try to load optional visual dependencies with fallbacks
1313
let gradient: OptionalGradientString;

0 commit comments

Comments
 (0)