-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: improve markdown quality (#498)
Signed-off-by: Simon Schrottner <simon.schrottner@dynatrace.com>
- Loading branch information
Showing
26 changed files
with
291 additions
and
132 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Markdown checks | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.md' | ||
pull_request: | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
markdown-lint: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Lint Markdown files | ||
run: make 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,18 @@ | ||
config: | ||
line-length: | ||
line_length: 500 | ||
tables: false | ||
code_blocks: false | ||
no-inline-html: | ||
allowed_elements: | ||
- details | ||
- summary | ||
- img | ||
github-admonition: true | ||
max-one-sentence-per-line: true | ||
|
||
ignores: | ||
- "**/CHANGELOG.md" | ||
- "docs/specification" | ||
- "node_modules" | ||
- "tmp" |
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,22 +1,26 @@ | ||
Welcome! | ||
# Welcome | ||
|
||
There are a few things to consider before contributing to flagd. | ||
|
||
Firstly, there's [a code of conduct](https://github.com/open-feature/.github/blob/main/CODE_OF_CONDUCT.md). | ||
TLDR: be respectful. | ||
|
||
Any contributions are expected to include unit tests. These can be validated with `make test` or the automated github workflow will run them on PR creation. | ||
Any contributions are expected to include unit tests. | ||
These can be validated with `make test` or the automated github workflow will run them on PR creation. | ||
|
||
This project uses a go workspace, to setup the project run | ||
|
||
```shell | ||
make workspace-init | ||
``` | ||
|
||
The go version in the `go.work` is the currently supported version of go. | ||
|
||
The project uses remote buf packages, changing the remote generation source will require a one-time registry configuration: | ||
|
||
```shell | ||
export GOPRIVATE=buf.build/gen/go | ||
``` | ||
|
||
Thanks! Issues and pull requests following these guidelines are welcome. | ||
Thanks! | ||
Issues and pull requests following these guidelines are welcome. |
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
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.