todocheck

(★ 440)

A static code analyser for annotated TODO comments

File Explorer

  • .gitignore
  • .golangci.yaml
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Dockerfile
  • go.mod
  • go.sum
  • LICENSE
  • main.go
  • Makefile
  • README.md
  • release.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

sha256sum

View Details ▼

Calculate SHA256 cryptographic checksums.

sha256sum {{path/to/file1 path/to/file2 ...}}

Calculate the SHA256 checksum for one or more files:

sha256sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha256}}

Calculate and save the list of SHA256 checksums to a file:

{{command}} | sha256sum

Calculate a SHA256 checksum from `stdin`:

🔍

shasum

View Details ▼

Calculate SHA cryptographic checksums.

shasum {{path/to/file1 path/to/file2 ...}}

Calculate the SHA1 checksum for one or more files:

shasum --algorithm {{1|224|256|384|512|512224|512256}} {{path/to/file1 path/to/file2 ...}}

Calculate the SHA checksum for one or more files with the specified algorithm:

{{command}} | shasum

Calculate a SHA1 checksum from `stdin`:

// repository documentation