This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce lint, link checks, fix errors. Remove status.
Signed-off-by: Bogdan Drutu <[email protected]>
- Loading branch information
1 parent
f9880dd
commit eea5f16
Showing
23 changed files
with
578 additions
and
482 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,36 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build: | ||
misspell: | ||
docker: | ||
- image: circleci/golang:1.12 | ||
- image: circleci/golang:1.14 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Verify | ||
command: make precommit | ||
name: Misspell Install | ||
command: make install-misspell | ||
- run: | ||
name: Misspell check | ||
command: make misspell | ||
|
||
markdownlint: | ||
docker: | ||
- image: node:13 | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install Tools | ||
command: | | ||
make install-markdown-lint | ||
make install-markdown-link-check | ||
- run: | ||
name: Run Tools | ||
command: | | ||
make markdown-lint | ||
make enforce-markdown-link-check | ||
workflows: | ||
version: 2 | ||
check-errors: | ||
jobs: | ||
- misspell | ||
- markdownlint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"default": true, | ||
"MD024": { "allow_different_nesting": true }, | ||
"MD029": { "style": "ordered" }, | ||
"ul-style": false, # MD004 | ||
"line-length": false, # MD013 | ||
"no-inline-html": false, # MD033 | ||
"fenced-code-language": false # MD040 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.