Skip to content

Commit

Permalink
Merge branch 'epic/cdk-v2' into feature/DO-1530_cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gowrizrh authored Oct 17, 2023
2 parents 093b5a7 + 0183256 commit ba25063
Show file tree
Hide file tree
Showing 34 changed files with 8,526 additions and 3,807 deletions.
11 changes: 10 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,14 @@
"ecmaVersion": "latest"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {}
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ dist/
# JetBrains IDE
.idea/

# VSCode IDE
.vscode/

# Unit test reports
TEST*.xml

Expand Down Expand Up @@ -53,6 +56,7 @@ Thumbs.db
# CDK asset staging directory
.cdk.staging
cdk.out
*.tsbuildinfo

*.d.ts
*.js
Loading

0 comments on commit ba25063

Please sign in to comment.