mirror of https://github.com/mtshiba/pylyzer
Deployed 4afbd29 with MkDocs version: 1.6.0
This commit is contained in:
parent
1da8970768
commit
42e6725ca4
|
|
@ -468,6 +468,15 @@
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="md-nav__item">
|
||||||
|
<a href="#-clear-cache" class="md-nav__link">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
--clear-cache
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="md-nav__item">
|
<li class="md-nav__item">
|
||||||
|
|
@ -504,6 +513,42 @@
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="md-nav__item">
|
||||||
|
<a href="#-no-infer-fn-type" class="md-nav__link">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
--no-infer-fn-type
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="md-nav__item">
|
||||||
|
<a href="#-fast-error-report" class="md-nav__link">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
--fast-error-report
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="md-nav__item">
|
||||||
|
<a href="#-hurry" class="md-nav__link">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
--hurry
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class="md-nav__item">
|
||||||
|
<a href="#-do-not-show-ext-errors" class="md-nav__link">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
--do-not-show-ext-errors
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
@ -564,6 +609,8 @@
|
||||||
<h1 id="command-line-options">command line options<a class="headerlink" href="#command-line-options" title="Permanent link">#</a></h1>
|
<h1 id="command-line-options">command line options<a class="headerlink" href="#command-line-options" title="Permanent link">#</a></h1>
|
||||||
<h2 id="-server">--server<a class="headerlink" href="#-server" title="Permanent link">#</a></h2>
|
<h2 id="-server">--server<a class="headerlink" href="#-server" title="Permanent link">#</a></h2>
|
||||||
<p>Launch as a language server.</p>
|
<p>Launch as a language server.</p>
|
||||||
|
<h2 id="-clear-cache">--clear-cache<a class="headerlink" href="#-clear-cache" title="Permanent link">#</a></h2>
|
||||||
|
<p>Clear the cache files.</p>
|
||||||
<h2 id="-dump-decl">--dump-decl<a class="headerlink" href="#-dump-decl" title="Permanent link">#</a></h2>
|
<h2 id="-dump-decl">--dump-decl<a class="headerlink" href="#-dump-decl" title="Permanent link">#</a></h2>
|
||||||
<p>Dump a type declarations file (d.er) after type checking.</p>
|
<p>Dump a type declarations file (d.er) after type checking.</p>
|
||||||
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>$<span class="w"> </span>pylyzer<span class="w"> </span>--dump-decl<span class="w"> </span>test.py
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a>$<span class="w"> </span>pylyzer<span class="w"> </span>--dump-decl<span class="w"> </span>test.py
|
||||||
|
|
@ -598,6 +645,14 @@ Default (disableable) features are:</p>
|
||||||
</ul>
|
</ul>
|
||||||
<h2 id="-verbose">--verbose<a class="headerlink" href="#-verbose" title="Permanent link">#</a></h2>
|
<h2 id="-verbose">--verbose<a class="headerlink" href="#-verbose" title="Permanent link">#</a></h2>
|
||||||
<p>Print process information verbosely.</p>
|
<p>Print process information verbosely.</p>
|
||||||
|
<h2 id="-no-infer-fn-type">--no-infer-fn-type<a class="headerlink" href="#-no-infer-fn-type" title="Permanent link">#</a></h2>
|
||||||
|
<p>When a function type is not specified, no type inference is performed and the function type is assumed to be <code>Any</code>.</p>
|
||||||
|
<h2 id="-fast-error-report">--fast-error-report<a class="headerlink" href="#-fast-error-report" title="Permanent link">#</a></h2>
|
||||||
|
<p>Simplify error reporting by eliminating to search for similar variables when a variable does not exist.</p>
|
||||||
|
<h2 id="-hurry">--hurry<a class="headerlink" href="#-hurry" title="Permanent link">#</a></h2>
|
||||||
|
<p>Enable <code>--no-infer-fn-type</code> and <code>--fast-error-report</code>.</p>
|
||||||
|
<h2 id="-do-not-show-ext-errors">--do-not-show-ext-errors<a class="headerlink" href="#-do-not-show-ext-errors" title="Permanent link">#</a></h2>
|
||||||
|
<p>Do not show errors from external libraries.</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
12
sitemap.xml
12
sitemap.xml
|
|
@ -2,32 +2,32 @@
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/editor/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/editor/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/errors/errors/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/errors/errors/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/errors/warns/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/errors/warns/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/options/options/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/options/options/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://mtshiba.github.io/pylyzer/options/pyproject/</loc>
|
<loc>https://mtshiba.github.io/pylyzer/options/pyproject/</loc>
|
||||||
<lastmod>2024-10-16</lastmod>
|
<lastmod>2024-11-10</lastmod>
|
||||||
<changefreq>daily</changefreq>
|
<changefreq>daily</changefreq>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binary file not shown.
Loading…
Reference in New Issue