We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d982f1e commit 9041a5bCopy full SHA for 9041a5b
eslint.config.js
@@ -134,6 +134,8 @@ module.exports = (async function config() {
134
135
// #region sonarjs
136
'sonarjs/cognitive-complexity': ['error', 25],
137
+ // https://community.sonarsource.com/t/eslint-plugin-sonarjs-performance-issues-on-large-codebase/138392
138
+ 'sonarjs/no-commented-code': 'off',
139
'sonarjs/no-duplicate-string': 'off',
140
'sonarjs/no-nested-assignment': 'off',
141
// #endregion
jest.config.ts
@@ -175,7 +175,7 @@ const jestConfig: Config = {
175
// This option allows use of a custom test runner
176
// testRunner: "jest-circus/runner",
177
178
- testTimeout: 30000,
+ testTimeout: 30_000,
179
180
// A map from regular expressions to paths to transformers
181
transform: {
0 commit comments