Skip to content
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

Adding support for Vale #1408

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .vale.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
StylesPath = vale-styles
Vocab = Blog
Packages = write-good
MinAlertLevel = warning
[*.md]
BasedOnStyles = Vale, write-good
BlockIgnores = (?s) *(\{\{<.*?>\}\})
2 changes: 1 addition & 1 deletion content/en/tutorials/java-notification-app/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public class AwsConfiguration {
}
```

In the above code, we have used the `@Autowired` annotation to autowrire the dependencies that are required for the application (`SqsClient` `SesClient`, and `notificationQueueUrl` in this case).
In the above code, we have used the `@Autowired` annotation to autowire the dependencies that are required for the application (`SqsClient` `SesClient`, and `notificationQueueUrl` in this case).
Now that we have got the URL of the queue created in the previous step, we can move on to the next step.

{{< callout "note" >}}
Expand Down
2 changes: 1 addition & 1 deletion content/en/tutorials/s3-static-website-terraform/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,5 +392,5 @@ You can use the [LocalStack App](https://app.localstack.cloud) to view the creat
Using LocalStack, you can perform various operations using emulated S3 buckets and other AWS services without creating any real AWS resources.

The code for this tutorial can be found in our [LocalStack Terraform samples over GitHub](https://github.com/localstack/localstack-terraform-samples/tree/master/s3-static-website).
Please make sure to adjust the paths for the html files in `main.tf`.
Please make sure to adjust the paths for the HTML files in `main.tf`.
Further documentation for S3 is available on our [S3 documentation]({{<ref "user-guide/aws/s3" >}}).
2 changes: 1 addition & 1 deletion content/en/tutorials/schema-evolution-glue-msk/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ We create the new producer by executing the following steps:
mvn clean generate-sources
```

- Once the classes have been generatated, the producer code needs to be adjusted (remove the usage of `setCustomer` in the producer's `getRecord`, since the method does not exist anymore).
- Once the classes have been generated, the producer code needs to be adjusted (remove the usage of `setCustomer` in the producer's `getRecord`, since the method does not exist anymore).
- Configure the producer to automatically register its schema version in case it's not yet registered by setting the additional property `AWSSchemaRegistryConstants.SCHEMA_AUTO_REGISTRATION_SETTING` to `true`:

```java
Expand Down
27 changes: 27 additions & 0 deletions vale-styles/config/vocabularies/blog/accept.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
(?i)DynamoDB
(?i)LocalStack
awslocal
(?i)GitHub
SDKs
(?i)AWS
(?i)sqs
(?i)sns
(?i)ses
(?i)ecs
Dockerfile
mkdir
serverless
Serverless
(?i)CloudFormation
parseable
transactionally
tflocal
APIs
Testcontainers
VMs
Ryuk
Cognito
CloudFront
npm
subnet
Fargate
1 change: 1 addition & 0 deletions vale-styles/config/vocabularies/blog/reject.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading