Deploying to gh-pages from @ b9bc5aaab2 🚀

This commit is contained in:
Sija 2022-12-22 11:11:53 +00:00
parent 41b26a705d
commit 71c7b49a44
129 changed files with 759 additions and 2359 deletions

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -780,13 +775,12 @@
</h2>
<p>This rule checks for mistyped shorthand assignments.</p>
<pre><code class="language-crystal"><span class="c"># bad</span>
x <span class="o">=</span><span class="o">-</span> y
x <span class="o">=</span><span class="o">+</span> y
x <span class="o">=</span><span class="o">!</span> y
<span class="c"># good</span>
x <span class="o">-=</span> y <span class="c"># or x = -y</span>
<p>This is considered invalid:</p>
<pre><code class="language-crystal">x <span class="o">=</span> <span class="o">-</span>y
x <span class="o">=</span> <span class="o">+</span>y
x <span class="o">=</span> <span class="o">!</span>y</code></pre>
<p>And this is valid:</p>
<pre><code class="language-crystal">x <span class="o">-=</span> y <span class="c"># or x = -y</span>
x <span class="o">+=</span> y <span class="c"># or x = +y</span>
x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<p>YAML configuration example:</p>
@ -834,7 +828,7 @@ x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/ambiguous_assignment.cr#L20" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/ambiguous_assignment.cr#L26" target="_blank">
ameba/rule/lint/ambiguous_assignment.cr
</a>
@ -856,7 +850,7 @@ x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<dl>
<dt class="entry-const" id="MISTAKES">
<strong>MISTAKES</strong> = <code>{<span class="s">&quot;=-&quot;</span> <span class="o">=&gt;</span> <span class="s">&quot;-=&quot;</span>, <span class="s">&quot;=+&quot;</span> <span class="o">=&gt;</span> <span class="s">&quot;+=&quot;</span>, <span class="s">&quot;=!&quot;</span> <span class="o">=&gt;</span> <span class="s">&quot;!=&quot;</span>}</code>
<strong>MISTAKES</strong> = <code>{<span class="s">&quot;=-&quot;</span>: <span class="s">&quot;-=&quot;</span>, <span class="s">&quot;=+&quot;</span>: <span class="s">&quot;+=&quot;</span>, <span class="s">&quot;=!&quot;</span>: <span class="s">&quot;!=&quot;</span>}</code>
</dt>
@ -1223,13 +1217,12 @@ x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<div class="doc">
<p>This rule checks for mistyped shorthand assignments.</p>
<pre><code class="language-crystal"><span class="c"># bad</span>
x <span class="o">=</span><span class="o">-</span> y
x <span class="o">=</span><span class="o">+</span> y
x <span class="o">=</span><span class="o">!</span> y
<span class="c"># good</span>
x <span class="o">-=</span> y <span class="c"># or x = -y</span>
<p>This is considered invalid:</p>
<pre><code class="language-crystal">x <span class="o">=</span> <span class="o">-</span>y
x <span class="o">=</span> <span class="o">+</span>y
x <span class="o">=</span> <span class="o">!</span>y</code></pre>
<p>And this is valid:</p>
<pre><code class="language-crystal">x <span class="o">-=</span> y <span class="c"># or x = -y</span>
x <span class="o">+=</span> y <span class="c"># or x = +y</span>
x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<p>YAML configuration example:</p>
@ -1240,7 +1233,7 @@ x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/ambiguous_assignment.cr#L20" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/ambiguous_assignment.cr#L26" target="_blank">View source</a>]
</div>
</div>
@ -1421,7 +1414,7 @@ x <span class="o">!=</span> y <span class="c"># or x = !y</span></code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/ambiguous_assignment.cr#L35" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/ambiguous_assignment.cr#L41" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -829,7 +824,7 @@ to disable a rule that even doesn't exist:</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/bad_directive.cr#L20" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/bad_directive.cr#L20" target="_blank">
ameba/rule/lint/bad_directive.cr
</a>
@ -1143,7 +1138,7 @@ to disable a rule that even doesn't exist:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/bad_directive.cr#L20" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/bad_directive.cr#L20" target="_blank">View source</a>]
</div>
</div>
@ -1324,7 +1319,7 @@ to disable a rule that even doesn't exist:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/bad_directive.cr#L29" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/bad_directive.cr#L29" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -832,7 +827,7 @@ or negating the variable.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/comparison_to_boolean.cr#L22" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/comparison_to_boolean.cr#L22" target="_blank">
ameba/rule/lint/comparison_to_boolean.cr
</a>
@ -1236,7 +1231,7 @@ or negating the variable.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/comparison_to_boolean.cr#L22" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/comparison_to_boolean.cr#L22" target="_blank">View source</a>]
</div>
</div>
@ -1417,7 +1412,7 @@ or negating the variable.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/comparison_to_boolean.cr#L33" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/comparison_to_boolean.cr#L33" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -830,7 +825,7 @@ committed into our codebase.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debug_calls.cr#L18" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debug_calls.cr#L18" target="_blank">
ameba/rule/lint/debug_calls.cr
</a>
@ -1145,7 +1140,7 @@ committed into our codebase.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debug_calls.cr#L18" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debug_calls.cr#L18" target="_blank">View source</a>]
</div>
</div>
@ -1354,7 +1349,7 @@ committed into our codebase.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debug_calls.cr#L26" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debug_calls.cr#L26" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -825,7 +820,7 @@ committed into our codebase.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debugger_statement.cr#L13" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debugger_statement.cr#L13" target="_blank">
ameba/rule/lint/debugger_statement.cr
</a>
@ -1125,7 +1120,7 @@ committed into our codebase.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debugger_statement.cr#L13" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debugger_statement.cr#L13" target="_blank">View source</a>]
</div>
</div>
@ -1306,7 +1301,7 @@ committed into our codebase.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/debugger_statement.cr#L20" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/debugger_statement.cr#L20" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -826,7 +821,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/duplicated_require.cr#L16" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/duplicated_require.cr#L16" target="_blank">
ameba/rule/lint/duplicated_require.cr
</a>
@ -1127,7 +1122,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/duplicated_require.cr#L16" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/duplicated_require.cr#L16" target="_blank">View source</a>]
</div>
</div>
@ -1308,7 +1303,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/duplicated_require.cr#L23" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/duplicated_require.cr#L23" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -845,7 +840,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_ensure.cr#L40" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_ensure.cr#L40" target="_blank">
ameba/rule/lint/empty_ensure.cr
</a>
@ -1165,7 +1160,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_ensure.cr#L40" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_ensure.cr#L40" target="_blank">View source</a>]
</div>
</div>
@ -1346,7 +1341,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_ensure.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_ensure.cr#L47" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -837,7 +832,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_expression.cr#L30" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_expression.cr#L30" target="_blank">
ameba/rule/lint/empty_expression.cr
</a>
@ -1251,7 +1246,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_expression.cr#L30" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_expression.cr#L30" target="_blank">View source</a>]
</div>
</div>
@ -1432,7 +1427,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_expression.cr#L40" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_expression.cr#L40" target="_blank">View source</a>]
</div>
</div>
@ -1448,7 +1443,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_expression.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_expression.cr#L47" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -847,7 +842,7 @@ loop <span class="k">do</span>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_loop.cr#L40" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_loop.cr#L40" target="_blank">
ameba/rule/lint/empty_loop.cr
</a>
@ -1266,7 +1261,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_loop.cr#L40" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_loop.cr#L40" target="_blank">View source</a>]
</div>
</div>
@ -1447,7 +1442,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_loop.cr#L49" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_loop.cr#L49" target="_blank">View source</a>]
</div>
</div>
@ -1463,7 +1458,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/empty_loop.cr#L53" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/empty_loop.cr#L53" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -835,7 +830,7 @@ Crystal's built-in formatter.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/formatting.cr#L28" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/formatting.cr#L28" target="_blank">
ameba/rule/lint/formatting.cr
</a>
@ -1160,7 +1155,7 @@ Crystal's built-in formatter.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/formatting.cr#L28" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/formatting.cr#L28" target="_blank">View source</a>]
</div>
</div>
@ -1369,7 +1364,7 @@ Crystal's built-in formatter.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/formatting.cr#L39" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/formatting.cr#L39" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -827,7 +822,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/hash_duplicated_key.cr#L22" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/hash_duplicated_key.cr#L22" target="_blank">
ameba/rule/lint/hash_duplicated_key.cr
</a>
@ -1129,7 +1124,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/hash_duplicated_key.cr#L22" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/hash_duplicated_key.cr#L22" target="_blank">View source</a>]
</div>
</div>
@ -1310,7 +1305,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/hash_duplicated_key.cr#L29" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/hash_duplicated_key.cr#L29" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -834,7 +829,7 @@ in control expressions.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L27" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L27" target="_blank">
ameba/rule/lint/literal_assignments_in_expressions.cr
</a>
@ -1235,7 +1230,7 @@ in control expressions.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L27" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L27" target="_blank">View source</a>]
</div>
</div>
@ -1416,7 +1411,7 @@ in control expressions.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L36" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_assignments_in_expressions.cr#L36" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -833,7 +828,7 @@ replaced with either the body of the construct, or deleted entirely.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_condition.cr#L23" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_condition.cr#L23" target="_blank">
ameba/rule/lint/literal_in_condition.cr
</a>
@ -1233,7 +1228,7 @@ replaced with either the body of the construct, or deleted entirely.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_condition.cr#L23" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_condition.cr#L23" target="_blank">View source</a>]
</div>
</div>
@ -1414,7 +1409,7 @@ replaced with either the body of the construct, or deleted entirely.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_condition.cr#L33" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_condition.cr#L33" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -829,7 +824,7 @@ that contain a literal value instead of a variable or function.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_interpolation.cr#L18" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_interpolation.cr#L18" target="_blank">
ameba/rule/lint/literal_in_interpolation.cr
</a>
@ -1225,7 +1220,7 @@ that contain a literal value instead of a variable or function.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_interpolation.cr#L18" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_interpolation.cr#L18" target="_blank">View source</a>]
</div>
</div>
@ -1406,7 +1401,7 @@ that contain a literal value instead of a variable or function.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literal_in_interpolation.cr#L27" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literal_in_interpolation.cr#L27" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -829,7 +824,7 @@ types like containers, range or regex.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literals_comparison.cr#L19" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literals_comparison.cr#L19" target="_blank">
ameba/rule/lint/literals_comparison.cr
</a>
@ -1235,7 +1230,7 @@ types like containers, range or regex.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literals_comparison.cr#L19" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literals_comparison.cr#L19" target="_blank">View source</a>]
</div>
</div>
@ -1416,7 +1411,7 @@ types like containers, range or regex.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/literals_comparison.cr#L31" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/literals_comparison.cr#L31" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -833,7 +828,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/missing_block_argument.cr#L26" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/missing_block_argument.cr#L26" target="_blank">
ameba/rule/lint/missing_block_argument.cr
</a>
@ -1238,7 +1233,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/missing_block_argument.cr#L26" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/missing_block_argument.cr#L26" target="_blank">View source</a>]
</div>
</div>
@ -1419,7 +1414,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/missing_block_argument.cr#L40" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/missing_block_argument.cr#L40" target="_blank">View source</a>]
</div>
</div>
@ -1435,7 +1430,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/missing_block_argument.cr#L36" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/missing_block_argument.cr#L36" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -835,7 +830,7 @@ alice <span class="o">=</span> names.find { <span class="o">|</span>name<span cl
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil.cr#L28" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil.cr#L28" target="_blank">
ameba/rule/lint/not_nil.cr
</a>
@ -1247,7 +1242,7 @@ alice <span class="o">=</span> names.find { <span class="o">|</span>name<span cl
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil.cr#L28" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil.cr#L28" target="_blank">View source</a>]
</div>
</div>
@ -1428,7 +1423,7 @@ alice <span class="o">=</span> names.find { <span class="o">|</span>name<span cl
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil.cr#L47" target="_blank">View source</a>]
</div>
</div>
@ -1444,7 +1439,7 @@ alice <span class="o">=</span> names.find { <span class="o">|</span>name<span cl
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil.cr#L38" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil.cr#L38" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -829,7 +824,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil_after_no_bang.cr#L22" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil_after_no_bang.cr#L22" target="_blank">
ameba/rule/lint/not_nil_after_no_bang.cr
</a>
@ -1245,7 +1240,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil_after_no_bang.cr#L22" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil_after_no_bang.cr#L22" target="_blank">View source</a>]
</div>
</div>
@ -1426,7 +1421,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil_after_no_bang.cr#L44" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil_after_no_bang.cr#L44" target="_blank">View source</a>]
</div>
</div>
@ -1442,7 +1437,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/not_nil_after_no_bang.cr#L35" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/not_nil_after_no_bang.cr#L35" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -831,7 +826,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/percent_array.cr#L26" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/percent_array.cr#L26" target="_blank">
ameba/rule/lint/percent_array.cr
</a>
@ -1157,7 +1152,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/percent_array.cr#L26" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/percent_array.cr#L26" target="_blank">View source</a>]
</div>
</div>
@ -1394,7 +1389,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/percent_array.cr#L36" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/percent_array.cr#L36" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -830,7 +825,7 @@ rand(<span class="n">2</span>)</code></pre>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/rand_zero.cr#L25" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/rand_zero.cr#L25" target="_blank">
ameba/rule/lint/rand_zero.cr
</a>
@ -1135,7 +1130,7 @@ rand(<span class="n">2</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/rand_zero.cr#L25" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/rand_zero.cr#L25" target="_blank">View source</a>]
</div>
</div>
@ -1316,7 +1311,7 @@ rand(<span class="n">2</span>)</code></pre>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/rand_zero.cr#L32" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/rand_zero.cr#L32" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -830,7 +825,7 @@ which is redundant.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_string_coercion.cr#L23" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_string_coercion.cr#L23" target="_blank">
ameba/rule/lint/redundant_string_coercion.cr
</a>
@ -1227,7 +1222,7 @@ which is redundant.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_string_coercion.cr#L23" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_string_coercion.cr#L23" target="_blank">View source</a>]
</div>
</div>
@ -1408,7 +1403,7 @@ which is redundant.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_string_coercion.cr#L32" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_string_coercion.cr#L32" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -835,7 +830,7 @@ collection.each_with_index <span class="k">do</span> <span class="o">|</span>e,
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_index.cr#L30" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_index.cr#L30" target="_blank">
ameba/rule/lint/redundant_with_index.cr
</a>
@ -1126,7 +1121,7 @@ collection.each_with_index <span class="k">do</span> <span class="o">|</span>e,
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_index.cr#L30" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_index.cr#L30" target="_blank">View source</a>]
</div>
</div>
@ -1307,7 +1302,7 @@ collection.each_with_index <span class="k">do</span> <span class="o">|</span>e,
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_index.cr#L35" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_index.cr#L35" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -835,7 +830,7 @@ collection.each_with_object(<span class="n">0</span>) <span class="k">do</span>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_object.cr#L30" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_object.cr#L30" target="_blank">
ameba/rule/lint/redundant_with_object.cr
</a>
@ -1145,7 +1140,7 @@ collection.each_with_object(<span class="n">0</span>) <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_object.cr#L30" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_object.cr#L30" target="_blank">View source</a>]
</div>
</div>
@ -1326,7 +1321,7 @@ collection.each_with_object(<span class="n">0</span>) <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/redundant_with_object.cr#L37" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/redundant_with_object.cr#L37" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -843,7 +838,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_argument.cr#L38" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_argument.cr#L38" target="_blank">
ameba/rule/lint/shadowed_argument.cr
</a>
@ -1166,7 +1161,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_argument.cr#L38" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_argument.cr#L38" target="_blank">View source</a>]
</div>
</div>
@ -1347,7 +1342,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_argument.cr#L49" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_argument.cr#L49" target="_blank">View source</a>]
</div>
</div>
@ -1363,7 +1358,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_argument.cr#L45" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_argument.cr#L45" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -841,7 +836,7 @@ exception is rescued.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_exception.cr#L36" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_exception.cr#L36" target="_blank">
ameba/rule/lint/shadowed_exception.cr
</a>
@ -1157,7 +1152,7 @@ exception is rescued.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_exception.cr#L36" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_exception.cr#L36" target="_blank">View source</a>]
</div>
</div>
@ -1338,7 +1333,7 @@ exception is rescued.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowed_exception.cr#L43" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowed_exception.cr#L43" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -838,7 +833,7 @@ for block or proc arguments.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowing_outer_local_var.cr#L33" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowing_outer_local_var.cr#L33" target="_blank">
ameba/rule/lint/shadowing_outer_local_var.cr
</a>
@ -1156,7 +1151,7 @@ for block or proc arguments.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowing_outer_local_var.cr#L33" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowing_outer_local_var.cr#L33" target="_blank">View source</a>]
</div>
</div>
@ -1337,7 +1332,7 @@ for block or proc arguments.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowing_outer_local_var.cr#L48" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowing_outer_local_var.cr#L48" target="_blank">View source</a>]
</div>
</div>
@ -1353,7 +1348,7 @@ for block or proc arguments.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shadowing_outer_local_var.cr#L41" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shadowing_outer_local_var.cr#L41" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -853,7 +848,7 @@ the second one.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shared_var_in_fiber.cr#L52" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shared_var_in_fiber.cr#L52" target="_blank">
ameba/rule/lint/shared_var_in_fiber.cr
</a>
@ -1186,7 +1181,7 @@ the second one.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shared_var_in_fiber.cr#L52" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shared_var_in_fiber.cr#L52" target="_blank">View source</a>]
</div>
</div>
@ -1367,7 +1362,7 @@ the second one.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shared_var_in_fiber.cr#L63" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shared_var_in_fiber.cr#L63" target="_blank">View source</a>]
</div>
</div>
@ -1383,7 +1378,7 @@ the second one.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/shared_var_in_fiber.cr#L59" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/shared_var_in_fiber.cr#L59" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -851,7 +846,7 @@ it <span class="s">&quot;works&quot;</span> <span class="k">do</span>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/spec_focus.cr#L47" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/spec_focus.cr#L47" target="_blank">
ameba/rule/lint/spec_focus.cr
</a>
@ -1187,7 +1182,7 @@ it <span class="s">&quot;works&quot;</span> <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/spec_focus.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/spec_focus.cr#L47" target="_blank">View source</a>]
</div>
</div>
@ -1368,7 +1363,7 @@ it <span class="s">&quot;works&quot;</span> <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/spec_focus.cr#L61" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/spec_focus.cr#L61" target="_blank">View source</a>]
</div>
</div>
@ -1384,7 +1379,7 @@ it <span class="s">&quot;works&quot;</span> <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/spec_focus.cr#L55" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/spec_focus.cr#L55" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -830,7 +825,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/syntax.cr#L21" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/syntax.cr#L21" target="_blank">
ameba/rule/lint/syntax.cr
</a>
@ -1116,7 +1111,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/syntax.cr#L21" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/syntax.cr#L21" target="_blank">View source</a>]
</div>
</div>
@ -1297,7 +1292,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/syntax.cr#L27" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/syntax.cr#L27" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -833,7 +828,7 @@ have any effect, the snippet should be written as the following:</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unneeded_disable_directive.cr#L27" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unneeded_disable_directive.cr#L27" target="_blank">
ameba/rule/lint/unneeded_disable_directive.cr
</a>
@ -1141,7 +1136,7 @@ have any effect, the snippet should be written as the following:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unneeded_disable_directive.cr#L27" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unneeded_disable_directive.cr#L27" target="_blank">View source</a>]
</div>
</div>
@ -1322,7 +1317,7 @@ have any effect, the snippet should be written as the following:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unneeded_disable_directive.cr#L34" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unneeded_disable_directive.cr#L34" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -845,7 +840,7 @@ loop <span class="k">do</span>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unreachable_code.cr#L44" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unreachable_code.cr#L44" target="_blank">
ameba/rule/lint/unreachable_code.cr
</a>
@ -1262,7 +1257,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unreachable_code.cr#L44" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unreachable_code.cr#L44" target="_blank">View source</a>]
</div>
</div>
@ -1443,7 +1438,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unreachable_code.cr#L57" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unreachable_code.cr#L57" target="_blank">View source</a>]
</div>
</div>
@ -1459,7 +1454,7 @@ loop <span class="k">do</span>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unreachable_code.cr#L53" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unreachable_code.cr#L53" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -834,7 +829,7 @@ For example, this is considered invalid:</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L28" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L28" target="_blank">
ameba/rule/lint/unused_argument.cr
</a>
@ -1188,7 +1183,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L28" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L28" target="_blank">View source</a>]
</div>
</div>
@ -1453,7 +1448,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L44" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L44" target="_blank">View source</a>]
</div>
</div>
@ -1469,7 +1464,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L48" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L48" target="_blank">View source</a>]
</div>
</div>
@ -1485,7 +1480,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L52" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L52" target="_blank">View source</a>]
</div>
</div>
@ -1501,7 +1496,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_argument.cr#L40" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_argument.cr#L40" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -839,7 +834,7 @@ For example, this is considered invalid:</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_block_argument.cr#L33" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_block_argument.cr#L33" target="_blank">
ameba/rule/lint/unused_block_argument.cr
</a>
@ -1163,7 +1158,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_block_argument.cr#L33" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_block_argument.cr#L33" target="_blank">View source</a>]
</div>
</div>
@ -1344,7 +1339,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_block_argument.cr#L47" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_block_argument.cr#L47" target="_blank">View source</a>]
</div>
</div>
@ -1360,7 +1355,7 @@ For example, this is considered invalid:</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/unused_block_argument.cr#L43" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/unused_block_argument.cr#L43" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -833,7 +828,7 @@
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_assign.cr#L28" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_assign.cr#L28" target="_blank">
ameba/rule/lint/useless_assign.cr
</a>
@ -1146,7 +1141,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_assign.cr#L28" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_assign.cr#L28" target="_blank">View source</a>]
</div>
</div>
@ -1327,7 +1322,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_assign.cr#L39" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_assign.cr#L39" target="_blank">View source</a>]
</div>
</div>
@ -1343,7 +1338,7 @@
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_assign.cr#L35" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_assign.cr#L35" target="_blank">View source</a>]
</div>
</div>

View file

@ -51,11 +51,6 @@
<div class="types-list">
<ul>
<li class=" " data-id="ameba/toplevel" data-name="top level namespace">
<a href="../../../toplevel.html">Top Level Namespace</a>
</li>
<li class="parent open current" data-id="ameba/Ameba" data-name="ameba">
<a href="../../../Ameba.html">Ameba</a>
@ -838,7 +833,7 @@ where it is guaranteed to always return the same result.</p>
</h2>
<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_condition_in_when.cr#L33" target="_blank">
<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_condition_in_when.cr#L33" target="_blank">
ameba/rule/lint/useless_condition_in_when.cr
</a>
@ -1151,7 +1146,7 @@ where it is guaranteed to always return the same result.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_condition_in_when.cr#L33" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_condition_in_when.cr#L33" target="_blank">View source</a>]
</div>
</div>
@ -1332,7 +1327,7 @@ where it is guaranteed to always return the same result.</p>
<br/>
<div>
[<a href="https://github.com/crystal-ameba/ameba/blob/2cfbe97b/src/ameba/rule/lint/useless_condition_in_when.cr#L50" target="_blank">View source</a>]
[<a href="https://github.com/crystal-ameba/ameba/blob/b9bc5aaa/src/ameba/rule/lint/useless_condition_in_when.cr#L50" target="_blank">View source</a>]
</div>
</div>