Identify and remove code elements that no longer serve a purpose, including unused imports, redundant function calls, and obsolete ESLint disable directives. This improves code readability and maintainability by eliminating unnecessary clutter.

When refactoring or updating configurations, review the codebase for:

Example of cleanup:

// Before - redundant code
import { start } from 'mastodon/common';
import { loadLocale } from 'mastodon/locales';

// eslint-disable-next-line import/no-default-export
start();

// After - cleaned up
import { loadLocale } from 'mastodon/locales';

Regularly audit your code during reviews to ensure only necessary code remains, especially after configuration changes or architectural updates.