Skip to content

Commit

Permalink
Merge pull request #76 from sevenwestmedia-labs/suppress_errors_as_wa…
Browse files Browse the repository at this point in the history
…rnings

suppress the typescript errors to warn
  • Loading branch information
vikasperi authored Nov 25, 2024
2 parents 7bbdce6 + 297f3ea commit 45b3412
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"rules": {
"@typescript-eslint/no-empty-function": "off"
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "warn", // To be removed after upgrading to aws-sdk v3
"@typescript-eslint/ban-types": "warn", // To be removed after upgrading to node 18
"no-irregular-whitespace": "warn", // To be removed after upgrading to node 18
"@typescript-eslint/no-var-requires": "warn", // To be removed after upgrading to node 18
"no-var": "warn", // To be removed after upgrading to node 18
"@typescript-eslint/prefer-namespace-keyword": "warn"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: PR Workflow
on:
pull_request:
branches:
- master
- main

jobs:
build:
Expand Down

0 comments on commit 45b3412

Please # to comment.