diff options
author | Akshay <[email protected]> | 2024-05-08 11:40:31 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2024-05-08 11:40:31 +0100 |
commit | 560a40492e1954d19f4528d58c2f45b07379cff5 (patch) | |
tree | 168dcf6eaf972fda5ba16731ecb60adf5af1b838 /docs/posts/lightweight_linting | |
parent | 66c2d86d45b32297ba33606bd1f88c3d56c97716 (diff) |
new post: snip snap
Diffstat (limited to 'docs/posts/lightweight_linting')
-rw-r--r-- | docs/posts/lightweight_linting/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/posts/lightweight_linting/index.html b/docs/posts/lightweight_linting/index.html index 3f9bed6..9982385 100644 --- a/docs/posts/lightweight_linting/index.html +++ b/docs/posts/lightweight_linting/index.html | |||
@@ -217,10 +217,10 @@ class="sourceCode bash"><code class="sourceCode bash"><span id="cb20-1"><a href= | |||
217 | your dependencies:</p> | 217 | your dependencies:</p> |
218 | <div class="sourceCode" id="cb21"><pre | 218 | <div class="sourceCode" id="cb21"><pre |
219 | class="sourceCode toml"><code class="sourceCode toml"><span id="cb21-1"><a href="#cb21-1" aria-hidden="true" tabindex="-1"></a><span class="co"># within Cargo.toml</span></span> | 219 | class="sourceCode toml"><code class="sourceCode toml"><span id="cb21-1"><a href="#cb21-1" aria-hidden="true" tabindex="-1"></a><span class="co"># within Cargo.toml</span></span> |
220 | <span id="cb21-2"><a href="#cb21-2" aria-hidden="true" tabindex="-1"></a><span class="kw">[</span><span class="dt">dependencies</span><span class="kw">]</span></span> | 220 | <span id="cb21-2"><a href="#cb21-2" aria-hidden="true" tabindex="-1"></a><span class="kw">[dependencies]</span></span> |
221 | <span id="cb21-3"><a href="#cb21-3" aria-hidden="true" tabindex="-1"></a><span class="dt">tree-sitter</span> <span class="op">=</span> <span class="st">"0.20"</span></span> | 221 | <span id="cb21-3"><a href="#cb21-3" aria-hidden="true" tabindex="-1"></a><span class="dt">tree-sitter</span> <span class="op">=</span> <span class="st">"0.20"</span></span> |
222 | <span id="cb21-4"><a href="#cb21-4" aria-hidden="true" tabindex="-1"></a></span> | 222 | <span id="cb21-4"><a href="#cb21-4" aria-hidden="true" tabindex="-1"></a></span> |
223 | <span id="cb21-5"><a href="#cb21-5" aria-hidden="true" tabindex="-1"></a><span class="kw">[</span><span class="dt">dependencies</span><span class="kw">.</span><span class="dt">tree-sitter-rust</span><span class="kw">]</span></span> | 223 | <span id="cb21-5"><a href="#cb21-5" aria-hidden="true" tabindex="-1"></a><span class="kw">[dependencies.tree-sitter-rust]</span></span> |
224 | <span id="cb21-6"><a href="#cb21-6" aria-hidden="true" tabindex="-1"></a><span class="dt">git</span> <span class="op">=</span> <span class="st">"https://github.com/tree-sitter/tree-sitter-rust"</span></span></code></pre></div> | 224 | <span id="cb21-6"><a href="#cb21-6" aria-hidden="true" tabindex="-1"></a><span class="dt">git</span> <span class="op">=</span> <span class="st">"https://github.com/tree-sitter/tree-sitter-rust"</span></span></code></pre></div> |
225 | <p>Let’s load in some Rust code to work with. As <a | 225 | <p>Let’s load in some Rust code to work with. As <a |
226 | href="https://en.wikipedia.org/wiki/Self-reference">an ode to Gödel</a> | 226 | href="https://en.wikipedia.org/wiki/Self-reference">an ode to Gödel</a> |