checker

command module
v0.1.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 22, 2022 License: MIT Imports: 1 Imported by: 0

README

Checker

Overview

Checker is a utility to help ensure documentation quality at MongoDB while reducing error prone, tedious tasks.

Install

go install github.com/terakilobyte/checker@latest

Use

The intended use is to check links in changed files. This can be accomplished with:

git diff --name-only HEAD master | tr "\n" "," | xargs checker -p --path . --changes

The above commands first get the list of file names with changes by comparing your current branch to master, then converts that into a comma separated list, lastly passing the list to the program via xargs.

You can also check all links by omitting the --changes flag, though this can take a very long time depending on the size of the project.

See the --help flag for more info.

checker --help

What it does

Specifically, it checks to ensure all links are valid. It does this in the following ways:

  • It will find all raw links and check them (https?...).
  • It will find all role uses defined in the latest release version of rstspec.toml and check resulting interpreted urls.
  • It will optionally check uses of :doc: and :ref: targets. Note: checker DOES NOT ignore rst comments. Use the optional -d and -r flags to check for :doc: and :ref: targets, respectively.

How it does it

Once it scans files for checkable items, it begins checking them. URL checing is performed in a pool of workers (default 10), configurable with the -w flag. Each worker is throttled (default 10), configurable with the -t flag, so that no worker can issue more than (1e9 / (throttle / workers)) requests per second. Setting this value too high can result in inadvertent DOS attacks.. :ref: targets are only checked for existence, since the URL is guaranteed to be accurate based on the way they are generated. :doc: targets check whether the target is in the list of scanned files.

Documentation

Overview

Copyright © 2021 Nathan Leniz <terakilobyte@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL