-
Notifications
You must be signed in to change notification settings - Fork 11
Vale rules #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Vale rules #96
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
02fc1bf
attempted fix to lint only changed files
m4sterbunny c2d1847
filtering to md and mdx to please bot
m4sterbunny fe8daa0
specifying two separators to please bot, making it new line to assist…
m4sterbunny 830c184
adds rules
m4sterbunny 834c970
fix merge conflicts
m4sterbunny 6c6b636
fix to pls bot; file separator
m4sterbunny 273f1c4
fix to pls bot; alphabetical
m4sterbunny e1f2ca0
run vale on this repo
m4sterbunny 7c45e05
clean out pr to style only
m4sterbunny 94cf93f
restore pages
m4sterbunny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,23 @@ | ||
| --- | ||
| name: Spell check | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| vale: | ||
| name: Vale | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Run Vale | ||
| uses: ./docs-spelling-check |
This file contains hidden or 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,2 +1,5 @@ | ||
| .DS_Store | ||
| .idea | ||
| .idea | ||
| docs-spelling-check/styles/Microsoft/ | ||
| docs-spelling-check/styles/proselint/ | ||
| docs-spelling-check/styles/write-good/ |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -42,6 +42,7 @@ exceptions: | |
| - Ethers.js | ||
| - EthSigner | ||
| - EVM | ||
| - Embedded Wallets | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| - FAQs | ||
| - Flask | ||
| - Go | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Microsoft.Terms.Ignoremay not be valid Vale configMedium Severity
Microsoft.Terms.Ignoredoes not appear to be a documented Vale configuration key. The.Ignoresuffix is supported for the built-inSpellingrule (to reference dictionary files), butMicrosoft.Termsis a substitution-type rule which only supportsexceptionsandvocabin its YAML definition. Vale will likely silently ignore this setting, meaning "agent" variants won't actually be excluded fromMicrosoft.Termschecks. The vocabularyaccept.txtor the rule'sexceptionsarray would be the standard way to achieve this.