todocheck

(★ 440)

A static code analyser for annotated TODO comments

파일 탐색기

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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

brew install

설명 보기 ▼

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

설명 보기 ▼

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

tldr docker container run

View documentation for the original command:

🔍

sha256sum

설명 보기 ▼

SHA256 암호화 체크섬 계산.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/sha2-utilities.html>.

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

하나 이상의 파일에 대한 SHA256 체크섬 계산:

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

SHA256 체크섬 목록을 파일에 계산 및 저장:

{{command}} | sha256sum

`stdin`에서 SHA256 체크섬 계산:

🔍

shasum

설명 보기 ▼

SHA 암호화 체크섬 계산.
더 많은 정보: <https://manned.org/shasum>.

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

하나 이상의 파일에 대해 SHA1 체크섬 계산:

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

하나 이상의 파일에 대해 SHA256 체크섬 계산:

{{command}} | shasum

하나 이상의 파일에 대해 SHA512 체크섬 계산:

// repository documentation