-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added linting rules * fixed gitignore * Typos, spelling, etc. * remove workflow
- Loading branch information
Showing
170 changed files
with
927 additions
and
832 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 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
content_dir: /docs |
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,15 @@ | ||
extends: conditional | ||
message: "'%s' has no definition." | ||
link: https://docs.microsoft.com/en-us/style-guide/acronyms | ||
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: | ||
- CDN | ||
- TLS | ||
- WAF | ||
- API | ||
- VPC |
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 @@ | ||
extends: substitution | ||
message: "Prefer '%s' over '%s'." | ||
# term preference should be based on microsoft style guide, such as | ||
link: https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/a/adapter | ||
level: warning | ||
ignorecase: true | ||
action: | ||
name: replace | ||
swap: | ||
zup: Zuplo Project | ||
zups: Zuplo projects |
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 @@ | ||
.Level in ["error"] |
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,60 @@ | ||
[Zz]uplo | ||
[Zz]udoku | ||
backend | ||
failover | ||
onboarding | ||
asdf | ||
VMWare | ||
Datadog | ||
Dynatrace | ||
URLPattern | ||
APIs | ||
WAFs | ||
liveness | ||
@zuplo.com | ||
AWS | ||
(?i)JSON | ||
MDN | ||
Lamdba | ||
routes.oas.json | ||
Dev | ||
Vite | ||
we have | ||
Inkeep | ||
VPCs | ||
GCP | ||
URL | ||
chai | ||
SLA | ||
SLAs | ||
OAuth | ||
Supabase | ||
Okta | ||
Cognito | ||
Fastly | ||
[Hh]ostname | ||
Crypto | ||
Equinix | ||
VMs | ||
serverless | ||
Astra | ||
[Bb]ackend | ||
[Mm]ockbin | ||
Grafana | ||
Xata | ||
monorepo | ||
subfolder | ||
[Tt]odos | ||
[Ss]ubrequests | ||
DataDog | ||
Checkly | ||
Keycloak | ||
[Mm]isconfigured | ||
[Mm]iddleware | ||
enqueued | ||
severities | ||
[Pp]olyfill | ||
Blockdaemon | ||
Docusaurus | ||
frontmatter | ||
Fastify |
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 = .styles | ||
|
||
MinAlertLevel = suggestion | ||
|
||
Vocab = Base | ||
Packages = Microsoft, MDX | ||
|
||
[*.{md,mdx}] | ||
BasedOnStyles = Vale, Microsoft, Zuplo | ||
Microsoft.Accessibility = NO | ||
Microsoft.Units = NO |
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,2 @@ | ||
lint: | ||
vale --filter=errors.expr docs/ |
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 @@ | ||
# Style guide | ||
|
||
- Use American English. | ||
- The documentation uses | ||
[Microsoft's Writing Style Guide](https://docs.microsoft.com/en-us/style-guide/welcome/) | ||
as a reference for writing style. | ||
- Try to avoid using passive voice or first-person pronouns. | ||
- Use the present tense. | ||
- Writing should be clear, concise, and easy to understand. | ||
- Use Vale to check for style and grammar issues. The vale configuration file is | ||
located at `.vale.ini`. |
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
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.