Renamed files to kebab-case - core - services - part 2#9
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
| const MailgunProvider = require('./EmailAnalyticsProviderMailgun'); | ||
| const EmailAnalyticsService = require('./email-analytics-service'); | ||
| const EmailEventStorage = require('../email-service/email-event-storage'); | ||
| const EmailEventProcessor = require('../email-service/email-event-processor'); |
There was a problem hiding this comment.
Import paths reference non-existent kebab-case files
High Severity
The import paths for EmailEventStorage and EmailEventProcessor were changed to kebab-case (email-event-storage and email-event-processor), but the actual source files remain named in PascalCase (EmailEventStorage.js and EmailEventProcessor.js). This mismatch causes a MODULE_NOT_FOUND error at runtime because the files at the new paths don't exist.
| const WellKnownController = require('./controllers/well-known-controller'); | ||
|
|
||
| const {EmailSuppressedEvent} = require('../../email-suppression-list/email-suppression-list'); | ||
| const MagicLink = require('../../lib/magic-link/magic-link'); |
There was a problem hiding this comment.
MagicLink import path references non-existent kebab-case file
High Severity
The import path for MagicLink was changed to kebab-case (../../lib/magic-link/magic-link), but the actual source file remains named in PascalCase (MagicLink.js). This mismatch causes a MODULE_NOT_FOUND error at runtime because the file magic-link.js doesn't exist.
Benchmark PR from agentic-review-benchmarks#7
Note
Standardizes file naming across core to kebab-case for consistency and case-sensitive platforms.
require/importpaths throughout API endpoints, services (members, email, stats, comments, identity-tokens, activitypub, etc.), and testsWritten by Cursor Bugbot for commit 092595d. Configure here.