Skip to content

Commit 060549a

Browse files
committed
better comments
1 parent c77b2ac commit 060549a

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/instructions/languages/sam.instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This is a healthcare API service deployed using AWS SAM (Serverless Application
2727
### Standard Parameters
2828
Always include these common parameters in templates:
2929
```yaml
30-
Parameters
30+
Parameters:
3131
StackName:
3232
Type: String
3333
Default: none
@@ -187,8 +187,8 @@ Environment:
187187
5. **Resource Naming**: Consistent naming with stack prefix
188188
6. **Documentation**: Include meaningful descriptions for all resources
189189
7. **Guard Rules**: Suppress only when necessary and document reasons
190-
9. **Build Methods**: Use esbuild for Node.js Lambda functions
191-
10. **Version Pinning**: Pin Lambda layer versions and runtimes
190+
8. **Build Methods**: Use esbuild for Node.js Lambda functions
191+
9. **Version Pinning**: Pin Lambda layer versions and runtimes
192192

193193
### Common Import Values
194194
- `eps-route53-resources:EPS-domain`

.github/instructions/languages/typescript.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: 'Guidelines for writing high-quality, maintainable TypeScript code with best practices for logging, error handling, code organization, naming, formatting, and style.'
3-
applyTo: '**/*.ts, **/*.tsx'
3+
applyTo: '**/*.{ts,tsx}'
44
---
55

66
# TypeScript Development Guidelines

.github/instructions/project/instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# EPS Common Workflow - copilot instructions
1+
# EPS Common Workflow - Copilot instructions
22

33
## Overview
4-
This contains common github workflows that are used by other EPS projects
4+
This contains common GitHub workflows that are used by other EPS projects
55

66
## General
77
These rules should be followed for all workflows
88

9-
*NEVER* use a version number in 3rd party actions or workflows - always use the git commit sha instead
9+
*NEVER* use a version number in 3rd party actions or workflows - always use the Git commit SHA instead
1010
*NEVER* use secrets: inherit in a workflow - always define what secrets are being passed through to another workflow
1111
*NEVER* use an input to a workflow directly in a code execution block. Always define an environment variable and use that in the code execution block
1212

0 commit comments

Comments
 (0)