Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .depcheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ ignores:
- style-loader
- ts-loader
- mongodb-runner
- "@wdio/local-runner"
- "@wdio/mocha-framework"
- "@wdio/spec-reporter"
- wdio-vscode-service
- wdio-wait-for
- "@wdio/globals"
- "@wdio/types"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In Compass and mongosh our depcheckrcs often have comments about why a specific dependency is in the ignore list, this might be an opportunity to also introduce this pattern here 🙂

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense - I will make sure to do that.

2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = {
],
},
parserOptions: {
project: ['./tsconfig.json'], // Specify it only for TypeScript files.
project: ['./eslint.tsconfig.json'], // Specify it only for TypeScript files.
},
},
{
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ constants.json
.env
.eslintcache
.sbom
.e2e
4 changes: 4 additions & 0 deletions eslint.tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["node_modules", "dist", "out", ".vscode-test", "scripts"]
}
Loading