<?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: Robis Koopmans</title>
    <description>The latest articles on DEV Community by Robis Koopmans (@robis_koopmans_42fdbb9304).</description>
    <link>https://dev.to/robis_koopmans_42fdbb9304</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3879281%2F5c9ed4ff-26b1-4d51-810f-2e8a00f7cd06.jpg</url>
      <title>DEV Community: Robis Koopmans</title>
      <link>https://dev.to/robis_koopmans_42fdbb9304</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/robis_koopmans_42fdbb9304"/>
    <language>en</language>
    <item>
      <title>You've been writing Sumerish for years. You just didn't know it had a name.</title>
      <dc:creator>Robis Koopmans</dc:creator>
      <pubDate>Tue, 14 Apr 2026 20:43:02 +0000</pubDate>
      <link>https://dev.to/robis_koopmans_42fdbb9304/youve-been-writing-sumerish-for-years-you-just-didnt-know-it-had-a-name-4h16</link>
      <guid>https://dev.to/robis_koopmans_42fdbb9304/youve-been-writing-sumerish-for-years-you-just-didnt-know-it-had-a-name-4h16</guid>
      <description>&lt;p&gt;Look at this code:&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;isLoading&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;hasError&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;canSubmit&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You already know what those variables contain without reading the rest of the file.&lt;br&gt;
&lt;code&gt;is&lt;/code&gt; → boolean. &lt;code&gt;has&lt;/code&gt; → boolean. &lt;code&gt;can&lt;/code&gt; → boolean.&lt;/p&gt;

&lt;p&gt;You've been using suffixes to communicate type intent your entire career.&lt;br&gt;
We all have. Informally. Inconsistently. Unenforced.&lt;/p&gt;


&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Now look at this:&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;isLoading&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[];&lt;/span&gt;        &lt;span class="c1"&gt;// wait, what?&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;hasPermissions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;/api/permissions&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="c1"&gt;// that's a Promise&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;canSubmit&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;yes&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;     &lt;span class="c1"&gt;// seriously?&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The name promises one thing. The value delivers another.&lt;br&gt;
Your linter doesn't care. Your tests might not catch it until runtime.&lt;br&gt;
Your colleague who reads this at 11pm definitely suffers.&lt;/p&gt;

&lt;p&gt;There's a classic joke in programming:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"There are only two hard things in computer science: cache invalidation and naming things."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We laugh because it's true. But the real problem isn't &lt;em&gt;naming things&lt;/em&gt;.&lt;br&gt;
It's that we name things with &lt;strong&gt;no contract&lt;/strong&gt;. The name is a suggestion, not a commitment.&lt;/p&gt;


&lt;h2&gt;
  
  
  What if the suffix was the contract?
&lt;/h2&gt;

&lt;p&gt;This is the core idea behind &lt;strong&gt;Sumerish&lt;/strong&gt; — a naming protocol where the suffix chain encodes a type commitment that your linter can actually enforce.&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;loginIs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;           &lt;span class="c1"&gt;// ✅ -is → boolean&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;userEn&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[];&lt;/span&gt;              &lt;span class="c1"&gt;// ✅ -en → Array&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;fetchWill&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{};&lt;/span&gt; &lt;span class="c1"&gt;// ✅ -will → Promise&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;processDo&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;         &lt;span class="c1"&gt;// ✅ -do → void function&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;getUserQ&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;u&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="c1"&gt;// ✅ -q → function with return value&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Violate the contract:&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;loginIs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[];&lt;/span&gt;              &lt;span class="c1"&gt;// ⚠ -is implies boolean, assigned array&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;fetchWill&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{};&lt;/span&gt;      &lt;span class="c1"&gt;// ⚠ -will implies Promise, function is not async&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;processDo&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;result&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;  &lt;span class="c1"&gt;// ⚠ -do implies void, use -q for queries&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;getUserQ&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;           &lt;span class="c1"&gt;// ⚠ -q implies return value, function has no return&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The linter catches it. Before your tests do.&lt;/p&gt;




&lt;h2&gt;
  
  
  The suffix map
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Suffix&lt;/th&gt;
&lt;th&gt;Implied type&lt;/th&gt;
&lt;th&gt;Slot&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;code&gt;-is&lt;/code&gt; / &lt;code&gt;-no&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;boolean&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-en&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Array&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-will&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Promise&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-do&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;() =&amp;gt; void&lt;/td&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-q&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;() =&amp;gt; T&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-me&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;owned/my&lt;/td&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;-in&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;location&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The &lt;strong&gt;slot&lt;/strong&gt; is the key — suffixes must appear in precedence order.&lt;br&gt;
The linter enforces that too:&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;userIsEn&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[];&lt;/span&gt;   &lt;span class="c1"&gt;// ⚠ -is (slot 4) before -en (slot 1)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  How is this different from @typescript-eslint/naming-convention?
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;@typescript-eslint/naming-convention&lt;/code&gt; enforces &lt;em&gt;shape&lt;/em&gt; — camelCase, PascalCase, leading underscores.&lt;/p&gt;

&lt;p&gt;It can tell you &lt;code&gt;loginIs&lt;/code&gt; is valid camelCase.&lt;br&gt;
It cannot tell you &lt;code&gt;loginIs&lt;/code&gt; should be a boolean.&lt;/p&gt;

&lt;p&gt;Sumerish enforces &lt;em&gt;semantics&lt;/em&gt;. The suffix is not decoration. It is a type contract.&lt;/p&gt;


&lt;h2&gt;
  
  
  The reading curve is nearly zero
&lt;/h2&gt;

&lt;p&gt;This is the part that surprised me most when building this.&lt;/p&gt;

&lt;p&gt;You don't need to learn Sumerish to read it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Report-view-pl-q?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You just understood that. "Could you please look at the report?"&lt;/p&gt;

&lt;p&gt;The roots stay English. The hyphens make the structure visible.&lt;br&gt;
The chain is self-documenting.&lt;/p&gt;

&lt;p&gt;You've already been using &lt;code&gt;is&lt;/code&gt;, &lt;code&gt;has&lt;/code&gt;, &lt;code&gt;can&lt;/code&gt; as informal suffixes.&lt;br&gt;
Sumerish just makes it systematic, consistent, and linted.&lt;/p&gt;




&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;--save-dev&lt;/span&gt; eslint-plugin-sumerish
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// eslint.config.js&lt;/span&gt;
&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;sumerish&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;eslint-plugin-sumerish&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="k"&gt;default&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;sumerish&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;configs&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;recommended&lt;/span&gt;&lt;span class="p"&gt;];&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🔌 VS Code extension → &lt;a href="https://marketplace.visualstudio.com/items?itemName=sumerish.sumerish" rel="noopener noreferrer"&gt;https://marketplace.visualstudio.com/items?itemName=sumerish.sumerish&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📦 npm → &lt;a href="https://www.npmjs.com/package/eslint-plugin-sumerish" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/eslint-plugin-sumerish&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;⭐ GitHub → &lt;a href="https://github.com/robis24/sumerish-vscode" rel="noopener noreferrer"&gt;https://github.com/robis24/sumerish-vscode&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🎮 Demo → &lt;a href="https://robis24.github.io/sumerish-vscode/" rel="noopener noreferrer"&gt;https://robis24.github.io/sumerish-vscode/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📝 The full manifesto → &lt;a href="https://medium.com/@robis24/how-we-fixed-english-the-sumerish-protocol-709b688743ba" rel="noopener noreferrer"&gt;How We Fixed English&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;You've been naming things with informal type hints your whole career.&lt;br&gt;
Now there's a linter for it.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>opensource</category>
      <category>devtools</category>
      <category>naming</category>
    </item>
  </channel>
</rss>
