Skip to main content

notignored

A terminal session: notignored src/ is typed and the suppressions appear one per line — each with its file and line in cyan, the tool in magenta, the silenced rules in yellow, the scope in blue and the stated reason dimmed — then notignored --diff --diff-base main reports only what the change touched: the two suppressions it added and, marked "(justification edited)", the one whose reason it merely rewrote

Find every lint and type-check suppression comment in a codebase — natively, and fast.

The default report: seven suppressions across seven tools — ruff, mypy, eslint, typescript, rust, shellcheck and llmlint — one per line as colorized path:line:column tool rules (scope) -- reason, closing with a summary counting them and the files they live in

A reviewer cares about the suppressions a change introduces, not the inventory it inherited, so --diff reports only those:

The same report under --diff: the two suppressions the change added, a ruff E501 and a biome noExplicitAny, and above them a mypy suppression the change only rewrote the justification of, marked "(justification edited)" after its scope, closing with a summary reading "2 added, 1 justification edited in 2 files"

On a pull request that report is one comment, not a wall of annotations: the GitHub Action posts a single sticky comment and edits that same comment in place on every push, so a reviewer always has one current list instead of one per commit. Every entry names the tool and the rules it silences, quotes the reason the author gave for silencing them, links straight to the line, and keeps the suppressed code one click away. The heading counts the suppressions the change added apart from the existing ones whose justification it merely rewrote — so the number a reviewer reads is the number of new bypasses, and a reworded explanation never inflates it.

The pull-request comment as GitHub renders it: a heading reading "notignored: 2 suppressions added, 1 justification edited", then a bullet per suppression naming its tool and rule in bold — the first marked "(justification edited)" — with the stated reason in italics and a permalink to the line, the first entry's "suppressed code" block expanded to show the silenced Python with the suppressed line marked, the other two collapsed, and a footer noting the commit the suppressions were read from

Every character of that comment is real output — what --format markdown prints for this change, captured by just screenshots-pr-comment. Only the surrounding styling is a local mimic of GitHub's, not a screenshot of github.com, which is why no comment author, avatar or timestamp frames it.

Narrowing to particular tools, the JSON envelope, and the pull-request comment

--tool, repeated, reports only the checkers you name:

The same scan narrowed with --tool ruff --tool mypy --tool shellcheck: three of the seven suppressions, the other four filtered out

--format json emits the full report envelope — every field of every record, documented below:

The JSON report envelope for one file: a version, an ignores array whose two records carry tool, scope, rules, reason, path, line, end_line, column, the raw directive text and the suppressed range, and an empty errors array

--format markdown emits the markdown source behind the comment above — this is what the action hands GitHub to render, permalinks and all:

The pull-request comment body as markdown: a heading reading "notignored: 2 suppressions added, 1 justification edited", then one bullet per suppression naming its tool and rule — the rewritten one marked "(justification edited)" — with its reason in italics, a permalink to the line, and a collapsed details block holding the suppressed code

The terminal shots are real captures of the CLI, rendered from its actual colorized output by just screenshots and gated by screencomp — so they change only when the output does.

Why

Suppression comments are where lint and type-check debt hides. A # noqa costs one line to add and scrolls past review unremarked — especially in agent-written code, where silencing a rule is often easier than fixing it.

notignored turns every suppression into a first-class, queryable record: which tool, which rules, the stated reason, and exactly where it lives. That makes a high-level review of a large change possible — you can see the bypasses and their justifications without reading every line.

It parses the directives itself and never invokes the tool whose rule is being silenced, so scanning a tree costs a read and a scan instead of ten linter startups. That is what makes it cheap enough to run on every pull request.

Install

# From PyPI or npm  both ship the prebuilt binary, so no Rust toolchain is
# needed and nothing is compiled at install time:
pip install notignored-cli
npm install -g notignored-cli

# Or without installing at all:
npx notignored-cli src/

# Cross-platform, from source (Linux, macOS, Windows):
cargo install --git https://github.com/nickderobertis/notignored --locked

# Or a prebuilt binary (Linux, macOS, and Windows under a POSIX shell):
curl -fsSL https://raw.githubusercontent.com/nickderobertis/notignored/main/scripts/install.sh | sh

All four install the same notignored command. The notignored-cli distributions carry the release binary for your platform — a wheel per platform on PyPI, a package per platform on npm, picked automatically — so they are the fastest path on a CI image with no Rust toolchain, and the only one that works where github.com is blocked but the package registries are not. Prebuilt targets are Linux (x64, arm64), macOS (x64, arm64), and Windows (x64); anywhere else, cargo install builds from source.

The installer honours NOTIGNORED_VERSION / NOTIGNORED_INSTALL_DIR (or the --version / --to flags), verifies the archive against the SHA-256 checksum published beside it, and refuses to install a binary it cannot verify. Every tagged release attaches per-platform archives built on native runners.

In CI there is nothing to install: the GitHub Action fetches the release binary itself and posts what the pull request added.

- uses: nickderobertis/notignored@v0

Try it

examples/ holds a handful of tiny files — Python, TypeScript, shell, Rust — each carrying the kind of suppression, and the kind of reason, real code collects. Point the binary at them:

$ notignored examples/
examples/api_client.py:3:20 mypy import-untyped (line) -- the vendored SDK ships no type stubs
examples/api_client.py:4:28 ruff F401 (line) -- re-exported so callers can configure retries
examples/deploy.sh:8:1 shellcheck SC2086 (next-line) -- the flags file is ours, and has to split into separate arguments
examples/deploy.sh:13:3 llmlint tool_output_is_signal (file) -- example input the README quickstart scans, not a script this project runs
examples/retry.rs:6:1 rust dead_code (next-line) -- the scheduler starts calling this once backoff lands
examples/widget.ts:6:3 eslint no-console (next-line) -- the mount path is traced in production
examples/widget.ts:9:3 typescript * (next-line) -- the vendored analytics global is declared without its options bag
notignored: 7 ignores in 4 files

Seven suppressions, seven tools, one pass over four files — no linter was run. Each line is path:line:column tool rules (scope) -- reason; --format json gives the same records as the envelope below, and --format markdown gives the comment the action posts. That block is checked against the real binary by tests/e2e/examples.rs, so it is output, not an illustration.

Usage

notignored [PATHS...] [--format human|json|markdown] [--color auto|always|never]
           [--tool NAME]... [--fail-if-found] [--diff [--diff-base REF]]
           [--github-repo OWNER/REPO] [--github-sha SHA] [--max-entries N]
  • PATHS — files and/or directories. Directories are walked recursively, honouring .gitignore. Defaults to ..
  • --formathuman (default), json, or markdown (a pull-request comment body; see the action below).
  • --color — when to colorize the human report. auto (the default) colors only an interactive terminal, always forces it, never disables it.
  • --tool — only report this tool; repeat to allow several. Omit for all.
  • --fail-if-found — exit 1 when any suppression is reported.
  • --diff — report only the suppressions the change added (see below).
  • --diff-base — the git revision or range --diff compares against.
  • --github-repo / --github-sha — the owner/repo and commit the markdown format builds its permalinks from.
  • --max-entries — how many suppressions the markdown format lists before it closes with a line counting the rest. Defaults to 20; must be at least 1.

The human report is colorized — the location, the tool, the rules, the scope, and the reason each get their own role, and a blanket * is red because it silences every rule the tool has. Coloring follows the NO_COLOR convention (and TERM=dumb) and the --color flag: auto colors only an interactive terminal, always forces it (through a pager, or to capture a screenshot), never disables it. The json and markdown formats are never colorized — they are contracts, not presentation, and are byte for byte the same whatever --color says.

Reviewing a pull request

A reviewer cares about the suppressions a change introduces, not the inventory it inherited. --diff reports only those: a directive is new when the diff added at least one of the lines it occupies.

Rewriting the justification of a suppression that was already there touches one of its lines too, so it is reported — but it is not a new suppression, and saying so would tell a reviewer a change silenced something it did not. Each reported directive therefore says which it is: an entry the change only rejustified carries a (justification edited) token after its scope, and the summary counts both kinds, including the one whose answer is none.

$ notignored --diff --diff-base main --fail-if-found
src/app.py:42:20 ruff E501 (line) -- long wrapped URL
src/store.py:8:14 mypy import-untyped (line) (justification edited) -- the SDK ships no stubs
notignored: 1 added, 1 justification edited in 2 files
  • Bare --diff compares the work tree — staged and unstaged — against HEAD.
  • --diff-base REF takes any git revision or range. A plain ref is compared from the merge base, the way a pull request's "Files changed" is, so commits that landed on the base branch after this one forked are never reported as this branch's own. An explicit A..B range is passed to git as-is, two-dot semantics and all. These are llmlint's --diff / --diff-base semantics exactly.
  • PATHS still narrow the result: notignored --diff --diff-base main src/ reports the new suppressions under src/ only. An empty intersection is a clean exit 0.
  • Only the files the change touched are read, so a diff run stays fast on a large repository. Files the change deleted are skipped; a renamed file reports what the change added to it, not the lines that merely moved.
  • Git names a file in bytes and a report names it with a string, so a path that is not valid UTF-8 has no faithful spelling here. It becomes an errors entry (and exit 2) rather than a file quietly dropped from the review — the lossy spelling would name a file that does not exist.

--diff shells out to git — infrastructure, not one of the linters whose directives are parsed natively — so it needs git on PATH and a work tree.

On a pull request: the GitHub Action

The action posts one sticky comment naming every suppression the pull request added, with its stated reason and a link to the line. It edits that same comment on each push instead of adding another, and on a pull request that neither adds a suppression nor rewrites a justification it posts nothing at all. A pull request that only rewrites a justification does get one: its heading counts the justifications edited and no additions, and each rejustified entry says so beside its rule.

Because that one comment is edited rather than replaced, it closes with a footer naming the commit its suppressions were read from — abbreviated, and linked to that commit — so a reviewer coming back after a push can tell at a glance whether they are reading the current tree or a comment the next scan has yet to catch up with.

# .github/workflows/notignored.yml
name: notignored

on:
  pull_request:

permissions:
  contents: read
  pull-requests: write

jobs:
  suppressions:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0 # the base branch has to be fetched to diff against it
      - uses: nickderobertis/notignored@v0

@v0 is a floating major tag: it follows every release in the 0.x line and moves only once that release's artifacts have published, so it never resolves to unreleased work. It will keep meaning 0.x after v1 exists. Pin exactly — nickderobertis/notignored@v0.1.10 — where a reproducible build matters more than picking up fixes; the tag for a specific version never moves.

Input Default Meaning
github-token ${{ github.token }} Token used to upsert the comment. Needs pull-requests: write.
diff-base the pull request's base branch Any git revision or range, as --diff-base takes.
paths the whole repository Whitespace-separated files and directories to scan.
max-entries 20 How many suppressions the comment lists before it closes with a line counting the rest. At least 1; anything else fails the run.
version latest A release tag such as v0.1.0, or local to build the action's own source with cargo.
Output Meaning
count How many suppressions the change added.
justification-edited-count How many existing suppressions had their justification rewritten.
report-path Path to the JSON report the scan wrote.

count keeps meaning additions and nothing else, so a workflow gating a build on it does not start failing the day somebody rewords a reason; the rewritten justifications are counted beside it rather than into it. A later step can fail the build, upload the report, or gate on a threshold:

      - uses: nickderobertis/notignored@v0
        id: notignored
      - if: steps.notignored.outputs.count != '0'
        run: echo "this change adds ${{ steps.notignored.outputs.count }} suppression(s)"
      - if: steps.notignored.outputs.justification-edited-count != '0'
        run: echo "and rewrites ${{ steps.notignored.outputs.justification-edited-count }} justification(s)"

The steps are bash, so the action runs on the Linux and macOS runners; it needs jq and the gh CLI (both preinstalled there), plus cargo when version: local.

--format markdown renders exactly the body the action posts, so it can be previewed locally:

$ notignored --diff --diff-base main --format markdown \
    --github-repo nickderobertis/notignored --github-sha "$(git rev-parse HEAD)"

Both permalink flags are optional; without them each location renders as plain path:line text.

The body lists at most max-entries suppressions — 20 by default — and when a change adds more it closes with one line naming how many it left out and the total, so the count is never hidden. Every listed entry carries a collapsed <details> block holding the code that suppression silences: its line, next-line, or block span, or the top of the file for a whole-file directive, line-numbered and capped at ten lines with a note when there is more. Collapsed by default, so a long list stays one screen and any single entry is one click from its context. A file that has since become unreadable renders its entry without a snippet rather than failing — the block only ever shows real source.

Exit codes

Code Meaning
0 The scan completed.
1 --fail-if-found was given and at least one suppression was reported.
2 The scan could not complete — an unreadable path or file, or a bad argument.

Findings go to stdout; the summary and any errors go to stderr, so notignored --format json > report.json captures only the report. A downstream consumer that stops reading (| head, | grep -q) is not an error: the scan's own verdict still decides the exit code.

Output

The json format emits the full report envelope:

{
  "version": 1,
  "ignores": [
    {
      "tool": "ruff",
      "scope": "line",
      "rules": ["E501"],
      "reason": "long wrapped URL",
      "path": "src/app.py",
      "line": 12,
      "end_line": 12,
      "column": 20,
      "raw": "# noqa: E501  # long wrapped URL",
      "suppressed": { "start_line": 12, "end_line": 12 }
    }
  ],
  "errors": []
}
  • scopeline, next-line, file, or block.
  • rules — rule names/codes exactly as written. [] means a blanket suppression of every rule the tool would apply (rendered as * in the human format).
  • reason — the stated justification, or null. Taken from the tool's native reason syntax where one exists, otherwise from the trailing comment on the directive line; whitespace is collapsed to single spaces.
  • line / end_line / column — 1-based.
  • suppressed — the best-effort range the directive silences. end_line is null when it runs to end-of-file or is unterminated.
  • change — on a --diff run only: added when the change wrote this suppression (or altered which rules, or how far, an existing one silences), justification-edited when it was already there and what moved is its stated reason. Omitted entirely by a whole-tree scan, which has no base to have changed anything against.
  • errors — files that could not be read. Never a panic.

version is the envelope version; it changes only when the shape does.

From TypeScript

notignored-sdk hands the same envelope to Node as typed records, by running the same binary — so a vitest suite, a GitHub Actions step, and your terminal all report the same thing:

npm install notignored-sdk notignored-cli
import { scan } from "notignored-sdk";

const added = await scan(["."], { diff: true, diffBase: "origin/main" });
if (added.ignores.some((directive) => directive.reason === null)) {
  throw new Error("this change adds a suppression with no stated reason");
}

Supported tools

Tool Directives
eslint // eslint-disable-line rule, // eslint-disable-next-line rule -- reason, /* eslint-disable rule -- reason *//* eslint-enable rule */
biome // biome-ignore lint/group/rule: reason, // biome-ignore-all lint/group/rule: reason, // biome-ignore-start lint/group/rule: reason// biome-ignore-end lint/group/rule: reason
ruff # noqa, # noqa: E501, F401, # ruff: noqa, # ruff: noqa: E501
typescript // @ts-ignore, // @ts-expect-error reason, /* @ts-ignore */, // @ts-nocheck
mypy # type: ignore, # type: ignore[arg-type, index], # mypy: ignore-errors, # mypy: disable-error-code="arg-type"
pyright # pyright: ignore, # pyright: ignore[reportArgumentType], # pyright: reportMissingImports=false
ty # ty: ignore, # ty: ignore[invalid-argument-type]
rust #[allow(dead_code)], #[allow(clippy::needless_collect, dead_code)], #[expect(dead_code, reason = "…")], #![allow(…)], #![expect(…, reason = "…")]
shellcheck # shellcheck disable=SC2086, # shellcheck disable=SC2086,SC2046, # shellcheck disable=SC2000-SC2100, # shellcheck disable=all, # shellcheck disable=SC2086 # reason
llmlint ignore[rule, …] reason, ignore-file[rule, …] reason, ignore-block[rule, …] reasonignore-end[rule, …] — each written after the llmlint keyword and a colon, in the host language's comment syntax

Scope follows each tool's own rules, not a house convention:

  • rust — an outer attribute is next-line and its suppressed range runs through the end of the item it annotates; an inner #![…] is file. A reason = "…" is the record's reason, even when the string wraps.
  • shellcheck — a directive above the first command is file; anywhere else it is next-line. A directive ShellCheck itself rejects (trailing prose with no #, or one placed after a command) is reported by neither tool.
  • typescript — the parity claim is pinned to one compiler: the typescript version in tests/js-toolchain/package.json7.0.2, the Go port — which is what tests/e2e/typescript_parity.rs drives. The 5.x compiler is a separate implementation of the same directives and is not guaranteed to read every form the same way, so the claim here is parity with the pinned compiler rather than with every tsc ever shipped.
  • llmlintignore trailing code is line; alone on its line it is next-line, because the code it silences is the one below (for a directive inside a multi-line comment, the first line after the comment ends). ignore-file is file, and ignore-blockignore-end is one block record spanning both directives. A block left unclosed keeps a null suppressed.end_line and adds an errors entry.

Each tool's own reason syntax is what gets captured: ESLint's -- description, Biome's mandatory : explanation, ruff's trailing # comment, and — for TypeScript, which defines no separator — whatever text trails the directive. A directive that lists no rules is a blanket suppression (rules: []).

Scope follows the tool rather than the syntax. // eslint-disable-line is line; // eslint-disable-next-line, // biome-ignore and // @ts-expect-error are next-line; # ruff: noqa, // biome-ignore-all and // @ts-nocheck are file; and the delimited pairs (/* eslint-disable *//* eslint-enable */, // biome-ignore-start// biome-ignore-end) are block, running to end-of-file with suppressed.end_line: null when they are never closed.

Adding one is four touch points: a module under src/tools/, one line in src/tools/mod.rs::registry(), one row above, and a directive in tests/fixtures/polyglot/. tests/tools_contract.rs fails the build if a row here and the registered parsers disagree, and tests/e2e/polyglot.rs fails it if a registered tool is missing from that fixture tree.

Where a directive reaches, and who honours it

Every # type: ignore and # pyright: ignore is line-scoped; the module-wide forms are mypy's two # mypy: config comments and pyright's rule override; for ty, where the comment sits is the scope; and a Rust attribute reaches to the end of the item it annotates:

Source Reported as
f(x) # type: ignore mypy, line
# mypy: ignore-errors on its own line mypy, file
# mypy: disable-error-code="arg-type" on its own line mypy, file
f(x) # pyright: ignore pyright, line
# pyright: reportMissingImports=false pyright, file
f(x) # ty: ignore ty, line
# ty: ignore above every statement ty, file
# ty: ignore on its own line in the body ty, next-line
#[allow(dead_code)] above an item rust, next-line, suppressed through the item's last line
#[expect(dead_code, reason = "…")] above an item rust, next-line, reason from the attribute
#![allow(dead_code)] at the top of the file rust, file

A Rust attribute's scope is next-line — that is where the item it annotates starts, and where a reviewer has to look — while its suppressed range covers the whole item, however many lines that item runs to. An inner #![…] attribute exempts the file it opens.

Pyright's <rule>=<value> override is reported only for the two values that switch a rule off, false and none; true, error, warning, and information turn a rule on or move its severity, so they are configuration rather than suppression. Pyright reads the rest of that line as its own item list, so the form can carry no reason — and a comment it refuses (a trailing # why, a value outside those six, or a directive that does not open the comment) silences nothing and is not reported.

Several tools honour a directive they did not invent: pyright and ty both act on mypy's # type: ignore, and ruff, pyright, and ty all act on one that does not open its comment (mypy does not). A directive is reported once, under the tool whose syntax it is# type: ignore is one mypy record, not three — so a count of records is a count of suppressions written, not of checkers affected.

One line can still carry directives for several tools, and each record covers its own directive only. Given

import legacy  # type: ignore[import-not-found]  # no stubs published  # noqa: F401  # imported for its side effects

the mypy record's raw stops at # no stubs published and its reason is "no stubs published"; the ruff record's raw starts at # noqa: F401 and its reason is "imported for its side effects". A record's raw and reason always end where the next tool's directive begins, so one tool's live suppression can never be filed as another's justification.

# pyright: basic and # pyright: strict switch pyright's type-checking mode rather than silencing a diagnostic, and are deliberately not reported.

How it works

Source is scanned once per file by a language-aware comment extractor (src/comments.rs) that understands # comments, // line comments, multi-line /* … */ blocks (nested, for Rust), Rust attributes, and the punctuation that delimits a Rust item — and that knows a string literal when it sees one, so MESSAGE = "# noqa: E501" is never reported. Tool parsers consume that extraction; they never re-scan raw lines.

Development

just bootstrap   # from a clean clone
just check       # the full gate: format, clippy, tests + coverage, docs
just --list      # everything else

This is an Nx monorepo of three projects — the notignored crate at the repo root, plus the python/notignored-sdk and npm/notignored-sdk SDKs. The repo-wide verbs above fan out across all of them; just nx run notignored-sdk-python:check runs one project's gate alone, and just nx show projects lists the graph. Pull-request CI narrows the gate to the projects the diff can reach.

just check runs the end-to-end suite, which drives the compiled binary as a subprocess and the real, pinned tools — ruff, mypy, pyright, ty, shellcheck, and llmlint (see the .<tool>-version files), eslint / biome / tsc (see tests/js-toolchain/package.json), plus the pinned toolchain's own rustc and clippy-driver — to prove that what notignored reports is what those tools actually suppress. just bootstrap installs them all under .dev/; it needs uv and Node.js 20+ on PATH.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

notignored_cli-0.1.16-py3-none-win_amd64.whl (1.1 MB view details)

Uploaded Python 3Windows x86-64

notignored_cli-0.1.16-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

notignored_cli-0.1.16-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

notignored_cli-0.1.16-py3-none-macosx_11_0_arm64.whl (985.6 kB view details)

Uploaded Python 3macOS 11.0+ ARM64

notignored_cli-0.1.16-py3-none-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file notignored_cli-0.1.16-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for notignored_cli-0.1.16-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5ccd4568b574c2f63aeaf27ea919a2d65635e76377c8fdde4e5edc8ae720b00
MD5 e61a6750c79c23a30d5f548cd3569938
BLAKE2b-256 ca981fe12c7497fa5170c013edf8fdce8857ce7567ef69f8c9be4c16bd38b2ea

See more details on using hashes here.

File details

Details for the file notignored_cli-0.1.16-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for notignored_cli-0.1.16-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37d21474e65dad7f42f393c86d0281f2e11e2955f88bc4a3ea3c31952dfda6f5
MD5 d931700dadb278165dcea0343065d55f
BLAKE2b-256 c4381ddaf49d5e7eeb3235695e038c8a3eee1a0f0a55a948bb7cbfc7da9e00f2

See more details on using hashes here.

File details

Details for the file notignored_cli-0.1.16-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for notignored_cli-0.1.16-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19804623ca1599644dd12847e0e8b9c524f0be741cfaccd7772edb7876b308e7
MD5 6b14bcda795d4cb355f8902374d0ba22
BLAKE2b-256 e36acd99ae08e194a6ffeabed28c166e9030feda2734453d3490ec50d1b83202

See more details on using hashes here.

File details

Details for the file notignored_cli-0.1.16-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for notignored_cli-0.1.16-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad6a186e9cb43c6612ab05b3539c013bd9407d793c043d8aeeeb201e5c87824
MD5 d89816be88e395eeb54012d4439b6242
BLAKE2b-256 a784740e4ed73a8e012179c3a5fee5b4af692ab80a57150e3709d9938d1462e7

See more details on using hashes here.

File details

Details for the file notignored_cli-0.1.16-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for notignored_cli-0.1.16-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61a53c211035025140130dd133851d125b0afb252c67afaaf562e8c15a5d0e84
MD5 20ad812c66b4b7ccd153a4bcea59577f
BLAKE2b-256 93d1291584e114bc58d4571793ede6b1ba976fd0ba66e281ffd1190e659f60fa

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.16 This release

5 files

0.1.15

5 files

0.1.14

5 files

0.1.13

5 files

0.1.12

5 files

0.1.11

5 files

0.1.10

5 files

0.1.9

5 files

0.1.8

5 files

0.1.7

5 files

0.1.6

5 files

0.1.5

5 files

0.1.4

5 files

0.1.3

5 files

0.1.2

5 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page