Text/status parsing fixes (#141)

* aaaaaa

* vendor minify

* update + test markdown parsing
This commit is contained in:
Tobi Smethurst 2021-08-16 19:17:56 +02:00 committed by GitHub
commit ce190d867c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
56 changed files with 7390 additions and 45 deletions

View file

@ -139,7 +139,7 @@ We use [golangci-lint](https://golangci-lint.run/) for linting. To run this loca
Then, you can run the linter with:
```bash
golangci-lint run
golangci-lint run --tests=false
```
Note that this linter also runs as a job on the Github repo, so if you make a PR that doesn't pass the linter, it will be rejected. As such, it's good practice to run the linter locally before pushing or opening a PR.
@ -155,7 +155,7 @@ go get -u github.com/golang/lint/golint
To run the linter, use:
```bash
golint ./...
golint ./internal/...
```
Then make sure to run `go fmt ./...` to update whitespace and other opinionated formatting.