<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: orbivort</title>
    <description>The latest articles on DEV Community by orbivort (@orbivort).</description>
    <link>https://dev.to/orbivort</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4095990%2Fa4c2151a-5c35-4ffd-9f47-817793564854.png</url>
      <title>DEV Community: orbivort</title>
      <link>https://dev.to/orbivort</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/orbivort"/>
    <language>en</language>
    <item>
      <title>Prevention Over Reporting: What Scrum Can Learn From Linters</title>
      <dc:creator>orbivort</dc:creator>
      <pubDate>Sun, 30 Aug 2026 15:11:49 +0000</pubDate>
      <link>https://dev.to/orbivort/prevention-over-reporting-what-scrum-can-learn-from-linters-11cf</link>
      <guid>https://dev.to/orbivort/prevention-over-reporting-what-scrum-can-learn-from-linters-11cf</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Linters catch mistakes the moment you make them. Most agile tools wait until after the sprint to tell you.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Your sprint failed three days ago, and the tool knew it the whole time. It just waited to show you in a burndown chart, after the damage was already done.&lt;/p&gt;

&lt;p&gt;Every retrospective ends with the same three words: "improve our process." Then the team returns to the same class of tool — one that lets a backlog item fly from &lt;em&gt;To Do&lt;/em&gt; straight to &lt;em&gt;Done&lt;/em&gt;, that happily saves a sprint with no goal, and that never blinks when you commit to twice what anyone can deliver.&lt;/p&gt;

&lt;p&gt;Your editor would never tolerate that behavior. Write &lt;code&gt;const x = 1; x = 2;&lt;/code&gt; and a red squiggle appears the instant your cursor moves:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nx"&gt;x&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c1"&gt;// Assignment to constant variable — caught the moment you type it&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A linter does not file a report after you ship the bug. It stops you at the keystroke.&lt;/p&gt;

&lt;p&gt;This article is about that contrast — &lt;strong&gt;prevention versus recording&lt;/strong&gt; — and what it looks like when you apply the linter mindset to the way your team runs Scrum.&lt;/p&gt;

&lt;h2&gt;
  
  
  Two Ways a Tool Can Treat a Mistake
&lt;/h2&gt;

&lt;p&gt;There are two fundamentally different jobs a tool can do when something goes wrong. Understanding the difference is the whole point.&lt;/p&gt;

&lt;p&gt;The first job is &lt;strong&gt;recording&lt;/strong&gt;. The tool watches what happens, logs it, and reports back later. A burndown chart is a record. A velocity graph is a record. A retrospective dashboard is a record. These are useful, but they all share one property: they describe the mistake &lt;em&gt;after&lt;/em&gt; it has happened.&lt;/p&gt;

&lt;p&gt;The second job is &lt;strong&gt;preventing&lt;/strong&gt;. The tool checks each action against a set of rules and refuses to allow the bad thing in the first place. This is what a linter does, and it is a different relationship to failure entirely.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Recording tools&lt;/th&gt;
&lt;th&gt;Preventing tools&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Tell you what went wrong&lt;/td&gt;
&lt;td&gt;Stop it before it happens&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Visualize the problem afterward&lt;/td&gt;
&lt;td&gt;Block the problem at the source&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Help you react&lt;/td&gt;
&lt;td&gt;Help you avoid reacting&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;A tool that only records can tell you how much a mistake cost. A tool that prevents stops the cost from ever being incurred. That single distinction changes everything downstream.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Linter Mindset
&lt;/h2&gt;

&lt;p&gt;A linter works on three principles, and each one maps cleanly onto how a team runs a sprint.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Rules are encoded, not remembered.&lt;/strong&gt; A linter does not rely on the developer to recall the rule. The rule lives in the tool and runs on every action. The equivalent for Scrum is the &lt;strong&gt;2020 Scrum Guide&lt;/strong&gt;, turned from a document you skim once a year into rules that run on every interaction.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Invalid actions are blocked, not flagged.&lt;/strong&gt; A linter does not let you save the bad code and then remind you about it later. It refuses the keystroke. The same idea applies to workflow: if a card must pass through &lt;em&gt;In Progress&lt;/em&gt;, the &lt;em&gt;Done&lt;/em&gt; state should simply not be reachable without it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Failure is caught at the cheapest point.&lt;/strong&gt; The earlier a mistake is caught, the less it costs. At the keystroke, a fix takes seconds. At the end of a sprint, it costs rework and trust. This is why prevention always beats reporting on cost.&lt;/p&gt;

&lt;p&gt;Here is what those principles look like as concrete rules:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Before a Sprint can start:
  ✓ A Sprint Goal exists and is non-empty
  ✓ Capacity is configured
  ✓ The backlog is prioritized

Before a backlog item can reach Done:
  ✓ It passed through In Progress
  ✓ Every Definition of Done criterion is met
  ✓ The transition is valid for its current state
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each rule is a guardrail. Together, they turn process adherence from a matter of discipline into a matter of design — and discipline fails quietly, where design cannot.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Prevention Changes for Each Role
&lt;/h2&gt;

&lt;p&gt;The linter mindset is not abstract. It changes the daily experience of everyone on the team:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;Product Owner&lt;/strong&gt; tries to start a sprint without a clear goal — the tool refuses. The goal has to exist and mean something before the sprint can begin.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;Developer&lt;/strong&gt; drags a card straight to &lt;em&gt;Done&lt;/em&gt; without passing through &lt;em&gt;In Progress&lt;/em&gt; — the board says no. The right way to move work is enforced, not suggested.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;Scrum Master&lt;/strong&gt; stops policing process in Slack. The guardrails live in the tool, so they get back to coaching.&lt;/li&gt;
&lt;li&gt;A backlog item with no &lt;strong&gt;Definition of Done&lt;/strong&gt; cannot be called finished. Every criterion has to be met before &lt;em&gt;Done&lt;/em&gt; is even an option.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The shared effect is subtle but profound: the team's conversation moves from "what went wrong?" to "what should we build next?" That is where the energy belongs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Applying This Without Changing Tools
&lt;/h2&gt;

&lt;p&gt;You do not need a new tool to start. You can apply the linter mindset to whatever you already use, starting with the cheapest wins:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Make invalid states unrepresentable.&lt;/strong&gt; If a card must pass through &lt;em&gt;In Progress&lt;/em&gt;, do not make &lt;em&gt;Done&lt;/em&gt; reachable without it — enforce it in your workflow configuration.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gate the start, not just the end.&lt;/strong&gt; Require a Sprint Goal and realistic capacity &lt;em&gt;before&lt;/em&gt; a sprint begins, not in the retrospective after.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automate the Definition of Done.&lt;/strong&gt; A checklist nobody checks is just a checklist. Make it a blocker on the transition itself.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retire the human police officer.&lt;/strong&gt; When guardrails live in the tool, the Scrum Master returns to coaching instead of chasing cards.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One boundary matters: a linter is not a substitute for conversation. The rules handle the mechanical checks; the humans still own the judgment calls. Prevention is the floor, not the ceiling.&lt;/p&gt;

&lt;h2&gt;
  
  
  An Example Implementation
&lt;/h2&gt;

&lt;p&gt;If you want to see this mindset built into a tool rather than layered onto one, I should be transparent: I am a maintainer of &lt;strong&gt;Scrumooth&lt;/strong&gt;, a self-hosted, open-source Scrum lifecycle management tool that embeds the 2020 Scrum Guide as executable rules.&lt;/p&gt;

&lt;p&gt;It covers the full lifecycle — product goal and backlog with MoSCoW prioritization, sprint planning with capacity enforcement, an interactive Kanban board with valid state transitions, daily scrums, impediments, increments, reviews, and retrospectives — with Definition of Ready and Done checklists gating every transition.&lt;/p&gt;

&lt;p&gt;Two quick notes, kept brief because the tool is not the point of this article:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Try it in your browser:&lt;/strong&gt; a live demo runs entirely client-side with mock data, no signup required — &lt;a href="https://orbivort.github.io/scrumooth/" rel="noopener noreferrer"&gt;orbivort.github.io/scrumooth&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-host it:&lt;/strong&gt; it is Apache 2.0 licensed, and the repository ships Docker Compose configuration — &lt;a href="https://github.com/orbivort/scrumooth" rel="noopener noreferrer"&gt;github.com/orbivort/scrumooth&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even if you never use it, the underlying idea is worth taking back to your team.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;The takeaway fits on a sticky note:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tools can either &lt;strong&gt;record&lt;/strong&gt; a mistake or &lt;strong&gt;prevent&lt;/strong&gt; it — and they are very different jobs.&lt;/li&gt;
&lt;li&gt;Linters work because they encode rules, block invalid actions, and catch failure at the cheapest point.&lt;/li&gt;
&lt;li&gt;The same principles apply to Scrum, whether you adopt a new tool or reconfigure the one you have.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Your code has a linter. Your sprints should too.&lt;/strong&gt; The next time a retrospective ends with "improve our process," ask whether the process is being enforced anywhere — or only discussed afterward.&lt;/p&gt;

&lt;h2&gt;
  
  
  Frequently Asked Questions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  What exactly is "the linter mindset" for Scrum?
&lt;/h3&gt;

&lt;p&gt;It is treating the 2020 Scrum Guide the way a code linter treats style and correctness rules: encode the rules in the tool, run them on every action, and block invalid actions instead of reporting them after the fact.&lt;/p&gt;

&lt;h3&gt;
  
  
  Do I need a specific tool to apply this?
&lt;/h3&gt;

&lt;p&gt;No. The cheapest changes — gating transitions, requiring a Sprint Goal before a sprint starts, automating the Definition of Done — can be made in most workflow tools. A purpose-built tool helps, but it is not a prerequisite.&lt;/p&gt;

&lt;h3&gt;
  
  
  How is preventing different from enforcing process?
&lt;/h3&gt;

&lt;p&gt;Enforcement can rely on discipline, which quietly fails. Prevention is structural: the invalid action is not merely discouraged, it is not available in the first place.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where can I learn more about Scrumooth?
&lt;/h3&gt;

&lt;p&gt;The repository is at &lt;a href="https://github.com/orbivort/scrumooth" rel="noopener noreferrer"&gt;github.com/orbivort/scrumooth&lt;/a&gt;, and there is a live demo at &lt;a href="https://orbivort.github.io/scrumooth/" rel="noopener noreferrer"&gt;orbivort.github.io/scrumooth&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>scrum</category>
      <category>agile</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
