0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-15 10:58:26 +02:00

Mention how to run the linters in documentation (#310)

Closes #309
This commit is contained in:
Erik Johnston 2017-10-17 17:11:00 +01:00 committed by Richard van der Hoff
parent bd07447abe
commit 7b0f62208f
2 changed files with 6 additions and 1 deletions

View file

@ -15,6 +15,10 @@ for that line or statement using a [comment directive](https://github.com/alecth
`// nolint: gocyclo`. This should be used sparingly and only when its clear
that the lint warning is spurious.
The linters are vendored, and can be run using [scripts/find-lint.sh](scripts/find-lint.sh)
(see file for docs) or as part of a build/test/lint cycle using
[scripts/build-test-lint.sh](scripts/build-test-lint.sh).
## HTTP Error Handling

View file

@ -13,7 +13,8 @@ instance of dendrite, and [CODE_STYLE.md](CODE_STYLE.md) for the code style
guide.
We use `gb` for managing our dependencies, so `gb build` and `gb test` is how
to build dendrite and run the unit tests respectively.
to build dendrite and run the unit tests respectively. There are [scripts](scripts)
for [linting](scripts/find-lint.sh) and doing a [build/test/lint run](scripts/build-test-lint.sh).
## Picking Things To Do