-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from kirnberger1980/master
Major Refactoring for Code Base
- Loading branch information
Showing
17 changed files
with
1,396 additions
and
1,230 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,3 @@ | ||
node_modules | ||
dist | ||
cdk.out |
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,45 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"rules": { | ||
"semi": [2, "always"], | ||
"eqeqeq": 2, | ||
"indent": [2, 2, {"SwitchCase": 1}], | ||
"quotes": ["error", "double"], | ||
"linebreak-style": "off", | ||
"array-bracket-newline": "off", | ||
"array-bracket-spacing": ["error", "never"], | ||
"no-trailing-spaces": "off", | ||
"padded-blocks": "off", | ||
"arrow-body-style": "off", | ||
"init-declarations": "off", | ||
"comma-dangle": "off", | ||
"keyword-spacing": [0, {"before": true, "after": true, "overrides": null}], | ||
"prefer-template": "off", | ||
"id-blacklist": "off", | ||
"no-console": "off", | ||
"no-sync": "off", | ||
"complexity": "off", | ||
"max-statements": "off", | ||
"array-element-newline": "off", | ||
"object-curly-spacing": "off", | ||
"template-curly-spacing": "off", | ||
"camelcase": "off", | ||
"no-use-before-define": "off", | ||
"id-length": "off", | ||
"id-match": "off", | ||
"max-len": "off", | ||
"no-magic-numbers": "off", | ||
"no-underscore-dangle": "off", | ||
"no-process-env": "off", | ||
"func-style": ["error", "declaration", { "allowArrowFunctions": true }] | ||
} | ||
} |
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,10 @@ | ||
*.js | ||
!jest.config.js | ||
*.d.ts | ||
node_modules | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out | ||
cdk.context.json | ||
package-lock.json |
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,6 @@ | ||
*.ts | ||
!*.d.ts | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
{"version":"14.0.0"} | ||
{"version":"16.0.0"} |
Oops, something went wrong.