Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Oct 18, 2023
1 parent 90b8598 commit e4795d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -68,11 +68,12 @@ $ make TOTAL=100
Should work, if you have all the dependencies installed, as suggested in the
[Dockerfile](https://github.com/yegor256/cam/blob/master/Dockerfile).

In order to analyze just a single repository, do this:
In order to analyze just a single repository, do this
([`yegor256/tojos`](https://github.com/yegor256/tojos) as an example):

```bash
$ make wipe
$ make REPO=yegor256/jpeek
$ make REPO=yegor256/tojos
```

## How to Calculate Additional Metrics
Expand Down
2 changes: 1 addition & 1 deletion steps/lint.sh
Expand Up @@ -46,7 +46,7 @@ find "${LOCAL}" -type f -name '*.py' -print0 | xargs -0 -n1 pylint --enable-all-

rubocop

find "${LOCAL}" -name '*.sh' -type f -print0 | xargs -0 -n1 shellcheck --severity=style
find "${LOCAL}" -name '*.sh' -type f -print0 | xargs -0 -n1 shellcheck --shell=bash --severity=style

mkdir -p "$(dirname "${flag}")"
date +%s%N > "${flag}"

0 comments on commit e4795d9

Please sign in to comment.