-
Notifications
You must be signed in to change notification settings - Fork 2
Add Vale for writing consistency #172
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| StylesPath = styles | ||
| MinAlertLevel = error | ||
|
|
||
| Packages = Google, write-good, MDX | ||
|
|
||
| [*.{md,mdx}] | ||
| BasedOnStyles = Vale, Google, write-good |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| [*.mdx] | ||
| # Exclude: | ||
| # | ||
| # - Non-JS inline expressions (which cause Acorn to throw) | ||
| TokenIgnores = '({#[^\n}]+})(?!`)' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| extends: existence | ||
| message: "Use 'AM' or 'PM' (preceded by a space)." | ||
| link: "https://developers.google.com/style/word-list" | ||
| level: error | ||
| nonword: true | ||
| tokens: | ||
| - '\d{1,2}[AP]M\b' | ||
| - '\d{1,2} ?[ap]m\b' | ||
| - '\d{1,2} ?[aApP]\.[mM]\.' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| extends: conditional | ||
| message: "Spell out '%s', if it's unfamiliar to the audience." | ||
| link: 'https://developers.google.com/style/abbreviations' | ||
| level: suggestion | ||
| ignorecase: false | ||
| # Ensures that the existence of 'first' implies the existence of 'second'. | ||
| first: '\b([A-Z]{3,5})\b' | ||
| second: '(?:\b[A-Z][a-z]+ )+\(([A-Z]{3,5})\)' | ||
| # ... with the exception of these: | ||
| exceptions: | ||
| - API | ||
| - ASP | ||
| - CLI | ||
| - CPU | ||
| - CSS | ||
| - CSV | ||
| - DEBUG | ||
| - DOM | ||
| - DPI | ||
| - FAQ | ||
| - GCC | ||
| - GDB | ||
| - GET | ||
| - GPU | ||
| - GTK | ||
| - GUI | ||
| - HTML | ||
| - HTTP | ||
| - HTTPS | ||
| - IDE | ||
| - JAR | ||
| - JSON | ||
| - JSX | ||
| - LESS | ||
| - LLDB | ||
| - NET | ||
| - NOTE | ||
| - NVDA | ||
| - OSS | ||
| - PATH | ||
| - PHP | ||
| - POST | ||
| - RAM | ||
| - REPL | ||
| - RSA | ||
| - SCM | ||
| - SCSS | ||
| - SDK | ||
| - SQL | ||
| - SSH | ||
| - SSL | ||
| - SVG | ||
| - TBD | ||
| - TCP | ||
| - TODO | ||
| - URI | ||
| - URL | ||
| - USB | ||
| - UTF | ||
| - XML | ||
| - XSS | ||
| - YAML | ||
| - ZIP |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| extends: existence | ||
| message: "'%s' should be in lowercase." | ||
|
Member
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. Why lowercase if the rule is about colons? I'm confused :-) |
||
| link: 'https://developers.google.com/style/colons' | ||
| nonword: true | ||
| level: warning | ||
| scope: sentence | ||
| tokens: | ||
| - '(?<!:[^ ]+?):\s[A-Z]' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| extends: substitution | ||
| message: "Use '%s' instead of '%s'." | ||
| link: 'https://developers.google.com/style/contractions' | ||
| level: suggestion | ||
| ignorecase: true | ||
| action: | ||
| name: replace | ||
| swap: | ||
| are not: aren't | ||
| cannot: can't | ||
| could not: couldn't | ||
| did not: didn't | ||
| do not: don't | ||
| does not: doesn't | ||
| has not: hasn't | ||
| have not: haven't | ||
| how is: how's | ||
| is not: isn't | ||
| it is: it's | ||
| should not: shouldn't | ||
| that is: that's | ||
| they are: they're | ||
| was not: wasn't | ||
| we are: we're | ||
| we have: we've | ||
| were not: weren't | ||
| what is: what's | ||
| when is: when's | ||
| where is: where's | ||
| will not: won't |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| extends: existence | ||
| message: "Use 'July 31, 2016' format, not '%s'." | ||
|
Member
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. Is there a European variant of this? (31 July 2016) :P |
||
| link: 'https://developers.google.com/style/dates-times' | ||
| ignorecase: true | ||
| level: error | ||
| nonword: true | ||
| tokens: | ||
| - '\d{1,2}(?:\.|/)\d{1,2}(?:\.|/)\d{4}' | ||
| - '\d{1,2} (?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)|May|Jun(?:e)|Jul(?:y)|Aug(?:ust)|Sep(?:tember)?|Oct(?:ober)|Nov(?:ember)?|Dec(?:ember)?) \d{4}' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| extends: existence | ||
| message: "In general, don't use an ellipsis." | ||
| link: 'https://developers.google.com/style/ellipses' | ||
| nonword: true | ||
| level: warning | ||
| action: | ||
| name: remove | ||
| tokens: | ||
| - '\.\.\.' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| extends: existence | ||
| message: "Don't put a space before or after a dash." | ||
| link: "https://developers.google.com/style/dashes" | ||
| nonword: true | ||
| level: error | ||
| action: | ||
| name: edit | ||
| params: | ||
| - trim | ||
| - " " | ||
| tokens: | ||
| - '\s[—–]\s' | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| extends: existence | ||
| message: "Don't use exclamation points in text." | ||
| link: "https://developers.google.com/style/exclamation-points" | ||
| nonword: true | ||
| level: error | ||
| action: | ||
| name: edit | ||
| params: | ||
| - trim_right | ||
| - "!" | ||
| tokens: | ||
| - '\w+!(?:\s|$)' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| extends: existence | ||
| message: "Avoid first-person pronouns such as '%s'." | ||
| link: 'https://developers.google.com/style/pronouns#personal-pronouns' | ||
| ignorecase: true | ||
| level: warning | ||
| nonword: true | ||
| tokens: | ||
| - (?:^|\s)I\s | ||
| - (?:^|\s)I,\s | ||
| - \bI'm\b | ||
| - \bme\b | ||
| - \bmy\b | ||
| - \bmine\b |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| extends: existence | ||
| message: "Don't use '%s' as a gender-neutral pronoun." | ||
| link: 'https://developers.google.com/style/pronouns#gender-neutral-pronouns' | ||
| level: error | ||
| ignorecase: true | ||
| tokens: | ||
| - he/she | ||
| - s/he | ||
| - \(s\)he |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| extends: substitution | ||
| message: "Consider using '%s' instead of '%s'." | ||
| ignorecase: true | ||
| link: "https://developers.google.com/style/inclusive-documentation" | ||
| level: error | ||
| action: | ||
| name: replace | ||
| swap: | ||
| (?:alumna|alumnus): graduate | ||
| (?:alumnae|alumni): graduates | ||
| air(?:m[ae]n|wom[ae]n): pilot(s) | ||
| anchor(?:m[ae]n|wom[ae]n): anchor(s) | ||
| authoress: author | ||
| camera(?:m[ae]n|wom[ae]n): camera operator(s) | ||
| door(?:m[ae]|wom[ae]n): concierge(s) | ||
| draft(?:m[ae]n|wom[ae]n): drafter(s) | ||
| fire(?:m[ae]n|wom[ae]n): firefighter(s) | ||
| fisher(?:m[ae]n|wom[ae]n): fisher(s) | ||
| fresh(?:m[ae]n|wom[ae]n): first-year student(s) | ||
| garbage(?:m[ae]n|wom[ae]n): waste collector(s) | ||
| lady lawyer: lawyer | ||
| ladylike: courteous | ||
| mail(?:m[ae]n|wom[ae]n): mail carriers | ||
| man and wife: husband and wife | ||
| man enough: strong enough | ||
| mankind: human kind|humanity | ||
| manmade: manufactured | ||
| manpower: personnel | ||
| middle(?:m[ae]n|wom[ae]n): intermediary | ||
| news(?:m[ae]n|wom[ae]n): journalist(s) | ||
| ombuds(?:man|woman): ombuds | ||
| oneupmanship: upstaging | ||
| poetess: poet | ||
| police(?:m[ae]n|wom[ae]n): police officer(s) | ||
| repair(?:m[ae]n|wom[ae]n): technician(s) | ||
| sales(?:m[ae]n|wom[ae]n): salesperson or sales people | ||
| service(?:m[ae]n|wom[ae]n): soldier(s) | ||
| steward(?:ess)?: flight attendant | ||
| tribes(?:m[ae]n|wom[ae]n): tribe member(s) | ||
| waitress: waiter | ||
| woman doctor: doctor | ||
| woman scientist[s]?: scientist(s) | ||
| work(?:m[ae]n|wom[ae]n): worker(s) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| extends: existence | ||
| message: "Don't put a period at the end of a heading." | ||
| link: "https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings" | ||
| nonword: true | ||
| level: warning | ||
| scope: heading | ||
| action: | ||
| name: edit | ||
| params: | ||
| - trim_right | ||
| - "." | ||
| tokens: | ||
| - '[a-z0-9][.]\s*$' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| extends: capitalization | ||
| message: "'%s' should use sentence-style capitalization." | ||
|
Member
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. Will this not trigger warnings if we use things like POST in a heading? |
||
| link: "https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings" | ||
| level: warning | ||
| scope: heading | ||
| match: $sentence | ||
| indicators: | ||
| - ":" | ||
| exceptions: | ||
| - Azure | ||
| - CLI | ||
| - Cosmos | ||
| - Docker | ||
| - Emmet | ||
| - gRPC | ||
| - I | ||
| - Kubernetes | ||
| - Linux | ||
| - macOS | ||
| - Marketplace | ||
| - MongoDB | ||
| - REPL | ||
| - Studio | ||
| - TypeScript | ||
| - URLs | ||
| - Visual | ||
| - VS | ||
| - Windows | ||
| - JSON | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| extends: substitution | ||
| message: "Use '%s' instead of '%s'." | ||
| link: 'https://developers.google.com/style/abbreviations' | ||
| ignorecase: true | ||
| level: error | ||
| nonword: true | ||
| action: | ||
| name: replace | ||
| swap: | ||
| '\b(?:eg|e\.g\.)(?=[\s,;])': for example | ||
| '\b(?:ie|i\.e\.)(?=[\s,;])': that is |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| extends: existence | ||
| message: "'%s' doesn't need a hyphen." | ||
| link: "https://developers.google.com/style/hyphens" | ||
| level: error | ||
| ignorecase: false | ||
| nonword: true | ||
| action: | ||
| name: edit | ||
| params: | ||
| - regex | ||
| - "-" | ||
| - " " | ||
| tokens: | ||
| - '\b[^\s-]+ly-\w+\b' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| extends: existence | ||
| message: "Don't use plurals in parentheses such as in '%s'." | ||
| link: "https://developers.google.com/style/plurals-parentheses" | ||
| level: error | ||
| nonword: true | ||
| action: | ||
| name: edit | ||
| params: | ||
| - trim_right | ||
| - "(s)" | ||
| tokens: | ||
| - '\b\w+\(s\)' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| extends: existence | ||
| message: "Spell out all ordinal numbers ('%s') in text." | ||
| link: 'https://developers.google.com/style/numbers' | ||
| level: error | ||
| nonword: true | ||
| tokens: | ||
| - \d+(?:st|nd|rd|th) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| extends: existence | ||
| message: "Use the Oxford comma in '%s'." | ||
| link: 'https://developers.google.com/style/commas' | ||
| scope: sentence | ||
| level: warning | ||
| tokens: | ||
| - '(?:[^,]+,){1,}\s\w+\s(?:and|or)' |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| extends: existence | ||
| message: "Use parentheses judiciously." | ||
| link: 'https://developers.google.com/style/parentheses' | ||
| nonword: true | ||
| level: suggestion | ||
| tokens: | ||
| - '\(.+\)' |
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.
My European heart says: we should recommend using 24hr notation instead :P