<p></p>
<p dir="auto">Just to add my two cents: it's very common to have a <code class="notranslate">.vscode</code> in your repo if many devs use VSCode. If you don't want to see the folder locally, you can even add this to the <code class="notranslate">.vscode/settings.json</code>:</p>
<div class="highlight highlight-source-ts" dir="auto"><pre class="notranslate"><span class="pl-s">"files.exclude"</span>: <span class="pl-kos">{</span>
  <span class="pl-s">".vscode"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">There are so many great settings you can specify in that file.</p>
<p dir="auto">Other than that, what I find useful many times is the amazing <a href="https://github.com/casey/just">just command runner</a> that is multi-platform. If you often find yourself executing the same command in the terminal, this might be useful such that everybody can do something like <code class="notranslate">just lint js</code>. And in the respective recipe named <code class="notranslate">js</code> in the <code class="notranslate">lint.justfile</code>, you would then call something like this:</p>
<div class="highlight highlight-source-js" dir="auto"><pre class="notranslate">#!/usr/bin/env bash
<span class="pl-s1">yarn</span> <span class="pl-s1">run</span> <span class="pl-s1">eslint</span> <span class="pl-c1">--</span><span class="pl-s1">config</span> <span class="pl-kos">.</span><span class="pl-c1">/</span><span class="pl-kos">.</span><span class="pl-c1">config</span><span class="pl-c1">/</span><span class="pl-s1">eslint</span><span class="pl-kos">.</span><span class="pl-c1">mjs</span> <span class="pl-c1">--</span><span class="pl-s1">max</span><span class="pl-c1">-</span><span class="pl-s1">warnings</span> <span class="pl-c1">0</span></pre></div>
<p dir="auto">See all <a href="https://github.com/MaMpf-HD/mampf/tree/main/.config/commands">kinds of commands</a> we use at MaMpf for various tasks like docker setup, printing ERD diagrams in Ruby, testing with cypress etc. We use <a href="https://github.com/MaMpf-HD/mampf/blob/23aae01471c4361b85e86df06e349cd8acfb735c/package.json#L27-L31">these scripts in <code class="notranslate">package.json</code></a> such that every dev can easily download and update their <code class="notranslate">just</code> version.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />Reply to this email directly, <a href="https://github.com/openstreetmap/openstreetmap-website/issues/5572#issuecomment-2621255610">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AAK2OLOOY54CH2SLKXZUMXD2NCU57AVCNFSM6AAAAABWCILDQWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMMRRGI2TKNRRGA">unsubscribe</a>.<br />You are receiving this because you are subscribed to this thread.<img src="https://github.com/notifications/beacon/AAK2OLP5JDA2AO7WR34ZD632NCU57A5CNFSM6AAAAABWCILDQWWGG33NNVSW45C7OR4XAZNMJFZXG5LFINXW23LFNZ2KUY3PNVWWK3TUL5UWJTU4HUX3U.gif" height="1" width="1" alt="" /><span style="color: transparent; font-size: 0; display: none; visibility: hidden; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0; mso-hide: all">Message ID: <span><openstreetmap/openstreetmap-website/issues/5572/2621255610</span><span>@</span><span>github</span><span>.</span><span>com></span></span></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/openstreetmap/openstreetmap-website/issues/5572#issuecomment-2621255610",
"url": "https://github.com/openstreetmap/openstreetmap-website/issues/5572#issuecomment-2621255610",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>