Set up linter rules

Set up linter rules in JavaScript — with the four heights of help laid out: do it now, make it easier for the next person to accept, work out the right move when you are stuck, and learn the pattern so it stops coming back.

4prompt heights
Open it in the interactive atlas →

The four heights

The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.

Execute — do the immediate task

+
We have a release branch ready. Apply the linter rules to the codebase, auto-fix style issues where…
We have a release branch ready. Apply the linter rules to the codebase, auto-fix style issues where safe, and produce a list of remaining errors that require manual judgment. Use the team’s agreed ECMAScript style, enforce no-console in production files, and fail if any rule marked critical is violated.

Improve — make it easier to accept

+
Before I push lint rules to the whole team, make them easy to accept. Surface which rules will…
Before I push lint rules to the whole team, make them easy to accept. Surface which rules will cause most churn, show examples of current code that will break the build, recommend a gradual rollout plan (auto-fix then enforce), and flag rules that affect runtime semantics versus pure style so reviewers know what to care about.

Decide — diagnose the stuck moment

+
I flipped the new lint rules on and CI started failing for half the team with about 200 new errors.…

CI is now failing for many developers after lint enforcement

I flipped the new lint rules on and CI started failing for half the team with about 200 new errors. I wanted to enforce quality but not block work. I don’t know which errors are urgent and which can wait. What subset of rules should I relax or defer immediately to unblock developers while keeping the most important guarantees intact?

Become — change the pattern

+
We keep tightening linter rules and every few months it causes a sprint of reworks, which kills…

Lint rule churn frustrates the team

We keep tightening linter rules and every few months it causes a sprint of reworks, which kills morale. The team either disables rules or ignores them. What rules-management habit or rollout process will stop the churn, keep code quality improving, and avoid demoralizing sudden breakages?

Next to this one

Other programming language work people do in JavaScript.

Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.

The rest of the map

Same library, five ways in.