-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Travis F. Collins <travis.collins@analog.com>
- Loading branch information
Showing
8 changed files
with
102 additions
and
0 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,12 @@ | ||
extends: capitalization | ||
message: "'%s' should be in title case" | ||
level: warning | ||
scope: sentence | ||
# $title, $sentence, $lower, $upper, or a pattern. | ||
#match: $title | ||
#style: AP # AP or Chicago; only applies when match is set to $title. | ||
exceptions: | ||
- ADC | ||
- DAC | ||
- adc | ||
- dac |
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,5 @@ | ||
extends: spelling | ||
message: "Did you really mean '%s'?" | ||
level: error | ||
ignore: | ||
- Vocab/Sphinx/accept.txt |
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,14 @@ | ||
# `extends` specifies the extension point you're using. Here, we're | ||
# using `substitution` to ensure correct usage of some techincal and | ||
# brand-specifc terminology. | ||
extends: substitution | ||
# `message` allows you to customize the output shown to your users. | ||
message: Use '%s' instead of '%s'. | ||
# We're setting this rule's severity to `error`, which will cause | ||
# CI builds to fail. | ||
level: error | ||
# We're using case-insensitive patterns. | ||
ignorecase: true | ||
swap: | ||
libIIO: libiio | ||
linux: Linux |
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,8 @@ | ||
extends: existence | ||
message: "Put a nonbreaking space between the number and the unit in '%s'." | ||
link: 'https://developers.google.com/style/units-of-measure' | ||
nonword: true | ||
level: warning | ||
tokens: | ||
- \d+(?:B|kB|MB|GB|TB) | ||
- \d+(?:ns|ms|s|min|h|d) |
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,40 @@ | ||
adijif | ||
204B | ||
204C | ||
JESD204B | ||
JESD204C | ||
libiio | ||
pypi | ||
conda | ||
JESD | ||
ADI | ||
SYSREF | ||
LMFC | ||
AD-FMCDAQ2-EBZ | ||
AD9523-1 | ||
AD9528 | ||
AD9680 | ||
ADRV9009 | ||
HMC7044 | ||
Nox | ||
pyenv | ||
bashrc | ||
zshrc | ||
Makefile | ||
Ultrascale | ||
Ultrascale+ | ||
[aA][dD][cC] | ||
[dD][aA][cC] | ||
PLL | ||
[nN]ox | ||
[mM]ultiblock | ||
codecov | ||
mux | ||
muxes | ||
muxing | ||
Fmax | ||
parameterization | ||
clk | ||
[xX]ilinx | ||
(?i)fpgas | ||
fpga |
Empty file.
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,12 @@ | ||
name: reviewdog | ||
on: [pull_request,push] | ||
|
||
jobs: | ||
vale: | ||
name: runner / vale | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: errata-ai/vale-action@reviewdog | ||
with: | ||
files: docs/source |
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,11 @@ | ||
StylesPath = .github/doc/styles | ||
MinAlertLevel = suggestion | ||
|
||
|
||
Vocab = Sphinx | ||
|
||
[*.rst] | ||
BasedOnStyles = ADI, Vale, Google | ||
|
||
[*.md] | ||
BasedOnStyles = ADI, Vale, Google |