Skip to content

Commit

Permalink
Inconsequential config updates and bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet committed Feb 13, 2025
1 parent 118e17c commit 680d3cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ module.exports = {
],
'no-delete-var': 'error',
'no-label-var': 'error',
'no-shadow': 'error',
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'no-shadow-restricted-names': 'error',
'no-undef': 'error',
'no-undef-init': 'error',
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"**/.yarn/": true,
"**/.yarnrc.yml": true,
"**/yarn.lock": true
}
},
"typescript.tsdk": "node_modules/typescript/lib"
}
2 changes: 2 additions & 0 deletions packages/tests/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ module.exports = {
setupFilesAfterEnv: ['<rootDir>/src/_jest/setupAfterEnv.ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.*'],
// We're building a lot of projects in parallel, so we need to increase the timeout.
testTimeout: 20000,
};

0 comments on commit 680d3cf

Please sign in to comment.