-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e70cc74
commit 92ef4b3
Showing
56 changed files
with
227 additions
and
661 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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
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,34 +1,27 @@ | ||
# Config vale. More information at https://docs.errata.ai/vale/config | ||
# Vale config. More information at https://vale.sh/docs/topics/config/ | ||
StylesPath = .github/styles | ||
MinAlertLevel = suggestion | ||
MinAlertLevel = warning | ||
|
||
Packages = Google | ||
# To update mui-vale package: | ||
# 1. Go to the docs folder in the material-ui repo | ||
# 2. Update/create YAML files | ||
# 3. Run `pnpm docs:zipRules` to generate the zip files | ||
# 4. You can test locally by replacing the url with the file path of the generated zip | ||
Packages = Google, https://github.com/mui/material-ui/raw/HEAD/docs/mui-vale.zip | ||
|
||
[*.md] | ||
# Ignore code injection which start with {{... | ||
# Ignore code injections that start with {{... | ||
BlockIgnores = {{.* | ||
|
||
# Custom syle | ||
# BasedOnStyles = Blog | ||
BasedOnStyles = MUI | ||
|
||
Blog.ComposedWords = YES | ||
Blog.NamingConventions = YES | ||
Blog.Typos = YES | ||
Blog.BrandName = YES | ||
Blog.NoCompanyName = YES | ||
# Google errors: | ||
Google.GenderBias = YES # No Gender bias | ||
# Google warings: | ||
Google.FirstPerson = YES # Avoid first-person | ||
Google.We = YES # Avoid first-person plural | ||
Google.Will = YES # Avoid future tense | ||
Google.OxfordComma = YES # Prefer Oxford comma | ||
|
||
# Google: | ||
Google.FirstPerson = YES # Avoid first-person pronouns such as I, me, ...'. | ||
Google.GenderBias = YES # Avoid gendered profession | ||
Google.OxfordComma = YES | ||
Google.Quotes = YES # Commas and periods go inside quotation marks. | ||
Google.Spelling = YES # In general, use American spelling (word ending with 'nised' or 'logue') | ||
Google.We = YES # Try to avoid using first-person plural | ||
Google.Latin = YES # Try to avoid latin expressions e.g. and i.e. | ||
|
||
# Those rules are not repected a lot | ||
# Google.Passive = YES # In general, use active voice instead of passive voice. | ||
Google.Will = YES # Avoid using will | ||
|
||
# False positives with "1st" nearly no use in our doc | ||
# Google.Units = YES # Put a nonbreaking space between the number and the unit | ||
[CHANGELOG*.md] | ||
MUI.CorrectReferenceAllCases = NO |
Oops, something went wrong.