This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joshua Leaverton
committed
Dec 18, 2020
1 parent
30d9927
commit a44dcfe
Showing
57 changed files
with
4,151 additions
and
3,348 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# don't ever lint node_modules | ||
node_modules | ||
cdk.out | ||
# don't lint build output (make sure it's set to your correct build folder name) | ||
dist | ||
# don't lint nyc coverage output | ||
coverage | ||
*.config.js | ||
*.eslint* | ||
|
||
|
||
|
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,23 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
es2017: true, | ||
mocha: true, | ||
}, | ||
extends: ["eslint:recommended"], | ||
overrides: [ | ||
{ | ||
files: ["**/*.ts"], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["@typescript-eslint"], | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
"prettier/@typescript-eslint", | ||
], | ||
}, | ||
], | ||
}; |
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,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: bug | ||
assignees: "" | ||
--- | ||
|
||
**Describe the bug** | ||
|
||
<!--- A clear and concise description of what the bug is --> | ||
|
||
**To Reproduce** | ||
|
||
<!--- Steps to reproduce the behavior --> | ||
|
||
**Expected behavior** | ||
|
||
<!--- A clear and concise description of what you expected to happen --> | ||
|
||
**Please complete the following information about the solution:** | ||
|
||
- [ ] Version: [e.g. v1.0.0] | ||
|
||
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-logging/releases) | ||
|
||
- [ ] Region: [e.g. us-east-1] | ||
- [ ] Was the solution modified from the version published on this repository? | ||
- [ ] If the answer to the previous question was yes, are the changes available on GitHub? | ||
- [ ] Have you checked your [service quotas](https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html) for the sevices this solution uses? | ||
- [ ] Were there any errors in the CloudWatch Logs? [How to enable debug mode?](https://docs.aws.amazon.com/solutions/latest/centralized-logging/appendix-d.html) | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem (please **DO NOT include sensitive information**). | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,17 @@ | ||
--- | ||
name: Documentation improvements | ||
about: Suggest a documentation update | ||
title: '' | ||
labels: documentation | ||
assignees: '' | ||
|
||
--- | ||
|
||
**What were you initially searching for in the docs?** | ||
<!--- Please help us understand how you looked for information that was either not available or unclear --> | ||
|
||
**Is this related to an existing part of the documentation? Please share a link** | ||
|
||
**Describe how we could make it clearer** | ||
|
||
**If you have a proposed update, please share it here** |
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,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this solution | ||
title: '' | ||
labels: feature-request, enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
<!--- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> | ||
|
||
**Describe the feature you'd like** | ||
<!--- A clear and concise description of what you want to happen --> | ||
|
||
**Additional context** | ||
<!--- Add any other context or screenshots about the feature request here --> |
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,5 @@ | ||
*Issue #, if available:* | ||
|
||
*Description of changes:* | ||
|
||
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. |
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,27 @@ | ||
# Test and Compiler files | ||
**test.json | ||
**test.js | ||
|
||
# distribution folders | ||
global-s3-assets | ||
regional-s3-assets | ||
open-source | ||
|
||
# Generated ouputs | ||
dist | ||
coverage | ||
docs | ||
npm-debug.log | ||
*.zip | ||
.scannerwork | ||
*.xml | ||
reports | ||
|
||
# Node dependencies | ||
node_modules | ||
package-lock.json | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out | ||
__snapshots__ |
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 @@ | ||
node_modules |
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,12 @@ | ||
# .prettierrc or .prettierrc.yaml | ||
arrowParens: "always" | ||
bracketSpacing: true | ||
endOfLine: "lf" | ||
htmlWhitespaceSensitivity: "css" | ||
proseWrap: "preserve" | ||
trailingComma: "es5" | ||
tabWidth: 2 | ||
semi: true | ||
singleQuote: false | ||
quoteProps: "as-needed" | ||
printWidth: 80 |
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.