Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 239ccde

Browse files
author
Joshua Leaverton
committed
Adding github templates
1 parent 7bfaa47 commit 239ccde

File tree

9 files changed

+138
-0
lines changed

9 files changed

+138
-0
lines changed

.eslintignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# don't ever lint node_modules
2+
node_modules
3+
# don't lint build output (make sure it's set to your correct build folder name)
4+
dist
5+
# don't lint nyc coverage output
6+
coverage
7+
*.js
8+
resources
9+
10+

.eslintrc.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
plugins: ["@typescript-eslint"],
5+
extends: [
6+
"eslint:recommended",
7+
"plugin:@typescript-eslint/eslint-recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"prettier",
10+
"prettier/@typescript-eslint",
11+
],
12+
};
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
<!--- A clear and concise description of what the bug is -->
12+
13+
**To Reproduce**
14+
<!--- Steps to reproduce the behavior -->
15+
16+
**Expected behavior**
17+
<!--- A clear and concise description of what you expected to happen -->
18+
19+
**Please complete the following information about the solution:**
20+
- [ ] Version: [e.g. v1.0.0]
21+
22+
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0134) - The AWS CloudFormation template for deployment of the AWS Centralized WAF & SG Management. Version **v1.0.0**_". You can also find the version from [releases](https://github.com/awslabs/aws-centralized-waf-and-sg-management/releases)
23+
24+
- [ ] Region: [e.g. us-east-1]
25+
- [ ] Was the solution modified from the version published on this repository?
26+
- [ ] If the answer to the previous question was yes, are the changes available on GitHub?
27+
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses?
28+
- [ ] Were there any errors in the CloudWatch Logs? [How to enable debug mode?](https://github.com/awslabs/aws-centralized-waf-and-sg-management/#enable-debug-mode)
29+
30+
**Screenshots**
31+
If applicable, add screenshots to help explain your problem (please **DO NOT include sensitive information**).
32+
33+
**Additional context**
34+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Documentation improvements
3+
about: Suggest a documentation update
4+
title: ''
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
**What were you initially searching for in the docs?**
11+
<!--- Please help us understand how you looked for information that was either not available or unclear -->
12+
13+
**Is this related to an existing part of the documentation? Please share a link**
14+
15+
**Describe how we could make it clearer**
16+
17+
**If you have a proposed update, please share it here**
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this solution
4+
title: ''
5+
labels: feature-request, enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
<!--- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
12+
13+
**Describe the feature you'd like**
14+
<!--- A clear and concise description of what you want to happen -->
15+
16+
**Additional context**
17+
<!--- Add any other context or screenshots about the feature request here -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Issue #, if available:*
2+
3+
*Description of changes:*
4+
5+
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Test and Compiler files
2+
**test.json
3+
**test.js
4+
5+
# distribution folders
6+
global-s3-assets
7+
regional-s3-assets
8+
open-source
9+
10+
# Generated ouputs
11+
dist
12+
coverage
13+
docs
14+
npm-debug.log
15+
*.zip
16+
.scannerwork
17+
*.xml
18+
reports
19+
20+
# Node dependencies
21+
node_modules
22+
package-lock.json
23+
24+
# CDK asset staging directory
25+
.cdk.staging
26+
cdk.out
27+
__snapshots__
28+
29+
30+

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.prettierrc.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# .prettierrc or .prettierrc.yaml
2+
arrowParens: "always"
3+
bracketSpacing: true
4+
endOfLine: "lf"
5+
htmlWhitespaceSensitivity: "css"
6+
proseWrap: "preserve"
7+
trailingComma: "es5"
8+
tabWidth: 2
9+
semi: true
10+
singleQuote: false
11+
quoteProps: "as-needed"
12+
printWidth: 80

0 commit comments

Comments
 (0)