Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bitwarden avatar

Fix Angular Fixmes

  • 9 installs
  • 13.5k repo stars
  • Updated August 5, 2026
  • bitwarden/clients

fix-angular-fixmes is a Claude Code skill that resolves eslint-disable suppression comments in the Bitwarden clients codebase by fixing the underlying issue.

About

This skill resolves eslint-disable suppression comments throughout the Bitwarden clients codebase by fixing the underlying issue rather than deleting the comment. It discovers suppressions, groups them by rule, and applies the correct fix (OnPush migration, signals, RxJS, TypeScript, and Bitwarden rules), preferring CLI schematics. A developer uses it to reduce linting suppressions and pay down migration debt. It defers OnPush and signals specifics to the angular-modernization skill.

  • Resolves eslint-disable suppressions by fixing the underlying Angular/TypeScript issue
  • Handles OnPush, signals, RxJS, and Bitwarden-specific lint rules
  • Prefers Angular CLI schematics over manual edits and removes the full comment block

Fix Angular Fixmes by the numbers

  • 9 all-time installs (skills.sh)
  • Ranked #1,714 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

fix-angular-fixmes capabilities & compatibility

Capabilities
lint fixing · angular migration · refactoring · code review
Works with
github
Use cases
refactoring · code review
From the docs

What fix-angular-fixmes says it does

Resolves eslint-disable suppression comments throughout the Bitwarden clients codebase by fixing the underlying issue.
SKILL.md
Fix the underlying issue — never just delete the suppression comment and leave broken code.
SKILL.md
Do NOT convert service observables to signals (ADR-0027).
SKILL.md
npx skills add https://github.com/bitwarden/clients --skill fix-angular-fixmes

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs9
repo stars13.5k
Last updatedAugust 5, 2026
Repositorybitwarden/clients

What it does

Reduce eslint-disable suppressions in the Bitwarden clients codebase by fixing the underlying Angular/TypeScript issue and removing the full comment block.

Who is it for?

Paying down ESLint suppression debt (OnPush, signals) in the Bitwarden clients Angular codebase.

Skip if: Converting service observables to signals (ADR-0027 forbids it) or authoritative OnPush/signals mechanics (use angular-modernization).

When should I use this skill?

When asked to fix FIXMEs, fix eslint suppressions, clean up eslint-disable-next-line, or reduce linting suppressions.

What you get

Lint suppressions removed by fixing the underlying OnPush, signals, RxJS, or TypeScript issue.

  • Discovered suppressions grouped by rule
  • Underlying fixes (OnPush/signals/RxJS/TS)
  • Removed FIXME + eslint-disable comment blocks

By the numbers

  • 15+ lint rules mapped in the reference table
  • two suppression forms (FIXME-paired and standalone)

Files

SKILL.mdMarkdownGitHub ↗

Key rules

  • Fix the underlying issue — never just delete the suppression comment and leave broken code.
  • Remove the complete comment block: FIXME line (if any) + TODO: Skipped block (if any) + eslint-disable-next-line line.
  • Both FIXME-paired and standalone suppressions are the same migration debt.
  • For Angular migration rules, prefer CLI schematics over manual edits.
  • Do NOT convert service observables to signals (ADR-0027).
  • For OnPush and signals patterns, the angular-modernization skill is the authoritative source — this skill only owns the ESLint suppression mechanics.

Step 1: Discover all suppressions

Use the Grep tool to find suppressions in the target path:

  • Pattern eslint-disable — finds all eslint suppressions
  • Pattern FIXME.*CL- — finds Angular FIXME-tracked ones specifically

Group results by rule name. Two forms appear in this codebase:

Form A — FIXME-paired (a FIXME tracking comment sits above the disable):

// FIXME(https://bitwarden.atlassian.net/browse/CL-764): Migrate to OnPush
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection

Form B — Standalone (disable without a FIXME, or with a CLI skip comment):

// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
// TODO: Skipped for signal migration because:
//  Accessor inputs cannot be migrated as they are too complex.
// FIXME(https://bitwarden.atlassian.net/browse/CL-903): Migrate to Signals
// eslint-disable-next-line @angular-eslint/prefer-signals

Both forms must be fixed the same way.

Rule reference

CategoryRuleSection below
Angular@angular-eslint/prefer-on-push-component-change-detectionOnPush
Angular@angular-eslint/prefer-signalsSignals
Angular@angular-eslint/prefer-output-emitter-refSignals
Angular template@angular-eslint/template/button-has-typeHTML rules
TypeScript@typescript-eslint/no-floating-promisesno-floating-promises
TypeScript@typescript-eslint/no-unused-varsno-unused-vars
TypeScript@typescript-eslint/no-unsafe-function-typeno-unsafe-function-type
RxJSrxjs/no-async-subscriberxjs rules
RxJSrxjs-angular/prefer-takeuntilrxjs rules
Bitwarden@bitwarden/platform/no-enumsno-enums
Bitwarden@bitwarden/components/no-bwi-class-usageHTML rules
Generalno-restricted-importsno-restricted-imports
Generalno-consoleno-console
Generalno-emptyno-empty
Generalbare // eslint-disable-next-linebare disable
Tailwindtailwindcss/no-custom-classnameHTML rules

OnPush

Rule: @angular-eslint/prefer-on-push-component-change-detection

Follow the OnPush guidance in the angular-modernization skill (add changeDetection: ChangeDetectionStrategy.OnPush, remove ChangeDetectorRef if only used for detectChanges()). Then remove the FIXME + eslint-disable-next-line lines.

@Directive does not support changeDetection — skip OnPush for pure directives.

Signals

Rules: @angular-eslint/prefer-signals, @angular-eslint/prefer-output-emitter-ref

Applies to @Input(), @Output(), @ViewChild, @ContentChild.

Follow the Signal Inputs, Outputs, and Queries guidance in the angular-modernization skill (prefer CLI schematics, then manual conversion). After each migration, manually remove the FIXME and eslint-disable-next-line lines, and any // TODO: Skipped for signal migration because: comment blocks.

Do NOT convert service observables to signals — only component-local state and decorator bindings (ADR-0027).

no-floating-promises

Rule: @typescript-eslint/no-floating-promises

A returned Promise is not handled. Pick one fix:

// 1. Await it (preferred in async functions)
await this.router.navigate(["/login"]);

// 2. void — explicit fire-and-forget
void this.router.navigate(["/login"]);

// 3. Chain .catch() for explicit error handling
this.router.navigate(["/login"]).catch((err) => this.logService.error(err));

Use void for navigation or toast calls that genuinely don't need awaiting. Use await when the result matters or you're already in an async context.

no-unused-vars

Rule: @typescript-eslint/no-unused-vars

// Remove unused variable
const unused = computeSomething(); // delete this line

// Or prefix with _ if it must be declared (e.g. destructuring)
const [_first, second] = array;

// Or suppress a catch variable (TypeScript 4.0+)
try { ... } catch { ... } // omit the variable entirely

no-unsafe-function-type

Rule: @typescript-eslint/no-unsafe-function-type

Replace the generic Function type with a specific signature:

Before

private callback: Function;

After — use the actual signature

private callback: () => void;
// or for unknown signatures:
private callback: (...args: unknown[]) => unknown;

RxJS rules

Rules: rxjs/no-async-subscribe, rxjs-angular/prefer-takeuntil

`rxjs/no-async-subscribe` — async callback inside .subscribe() swallows errors:

Before

this.service.data$.subscribe(async (value) => {
  await this.process(value);
});

After — move async work into the pipe

this.service.data$
  .pipe(
    switchMap((value) => this.process(value)),
    takeUntilDestroyed(),
  )
  .subscribe();

`rxjs-angular/prefer-takeuntil` — subscription without cleanup:

Before

this.service.data$.subscribe((value) => {
  this.data = value;
});

After — add takeUntilDestroyed() (call in constructor or use destroyRef)

constructor() {
  this.service.data$
    .pipe(takeUntilDestroyed())
    .subscribe((value) => { this.data = value; });
}

no-enums

Rule: @bitwarden/platform/no-enums

Convert TypeScript enums to const objects with type aliases (ADR-0025):

Before

enum CipherType {
  Login = 1,
  SecureNote = 2,
}

After

export const CipherType = Object.freeze({ Login: 1, SecureNote: 2 } as const);
export type CipherType = (typeof CipherType)[keyof typeof CipherType];

Update all import sites — the usage (CipherType.Login) stays the same.

no-restricted-imports

Rule: no-restricted-imports

The import is from a path that the ESLint config forbids. Steps:

1. Read the context around the import to understand what is being imported. 2. Check eslint.config.mjs at the repo root (or the nearest config) for the no-restricted-imports rule to find the allowed alternative path. 3. Replace the import with the allowed path and remove the suppression.

Common cases: importing platform-internal modules directly instead of through the public API, or test-only helpers in non-test files.

no-console

Rule: no-console

// Remove debug statements
console.log("debug"); // delete

// Replace with the application logging service
this.logService.error("Something failed", error);

In test files (*.spec.ts), a console.error or console.warn spy may be intentional — in that case, set up the spy properly rather than suppressing:

jest.spyOn(console, "error").mockImplementation(() => {});

no-empty

Rule: no-empty

Empty catch blocks silently swallow errors:

Before

try {
  await something();
  // eslint-disable-next-line no-empty
} catch {}

After — handle or log the error

try {
  await something();
} catch (e) {
  // Intentionally ignored — operation is best-effort
}

// Or log it
try {
  await something();
} catch (e) {
  this.logService.warning("Operation failed", e);
}

Bare disable

Rule: bare // eslint-disable-next-line (no rule specified)

This disables ALL rules for the next line, which is always wrong. Steps:

1. Remove the suppression and run npm run lint:fix to see which specific rule triggers. 2. Fix the underlying issue using the appropriate section above. 3. If the violation truly cannot be fixed (rare), replace the bare disable with a specific named rule.

HTML rules

`@angular-eslint/template/button-has-type` — Add an explicit type to every <button>:

Before

<button (click)="save()">Save</button>

After

<button type="button" (click)="save()">Save</button>
<!-- or type="submit" inside a <form> -->

`@bitwarden/components/no-bwi-class-usage` — Replace raw bwi-* icon classes with the <bit-icon> component or the appropriate icon token.

`tailwindcss/no-custom-classname` — Use a Tailwind utility class with the tw- prefix, or register the class in the Tailwind safelist. Never use arbitrary custom class names.

Step 2: Cleanup checklist per fixed instance

  • [ ] // FIXME(…) line removed (if present)
  • [ ] // TODO: Skipped for signal migration because: … block removed (all lines, if present)
  • [ ] // eslint-disable-next-line … line removed
  • [ ] Unused imports removed; new imports added as needed
  • [ ] All in-class usages updated (e.g. signal reads need ())

Step 3: Validate

npm run lint:fix

Fix any errors that remain. Run npm run test if behaviour-critical code was changed.

Related skills

Frontend Developmentfrontendtesting

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.