@apify/oxlint-config 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -86,6 +86,9 @@ const sharedConfig = {
|
|
|
86
86
|
// Jest and vitest plugins have some overlapping rules.
|
|
87
87
|
// Disable the Jest ones and let the Vitest plugin handle them.
|
|
88
88
|
'jest/expect-expect': 'off',
|
|
89
|
+
'jest/no-disabled-tests': 'error',
|
|
90
|
+
'jest/no-conditional-expect': 'error',
|
|
91
|
+
'jest/no-focused-tests': 'error',
|
|
89
92
|
'jest/no-standalone-expect': 'off',
|
|
90
93
|
'jest/valid-describe-callback': 'off',
|
|
91
94
|
'jest/valid-expect': 'off',
|
|
@@ -165,9 +168,9 @@ const sharedConfig = {
|
|
|
165
168
|
'typescript/await-thenable': 'off',
|
|
166
169
|
'typescript/no-floating-promises': 'off',
|
|
167
170
|
'typescript/no-misused-promises': 'off',
|
|
168
|
-
'
|
|
169
|
-
'
|
|
170
|
-
'
|
|
171
|
+
'vitest/no-disabled-tests': 'error',
|
|
172
|
+
'vitest/no-conditional-expect': 'error',
|
|
173
|
+
'vitest/no-focused-tests': 'error',
|
|
171
174
|
'import/no-default-export': 'off',
|
|
172
175
|
},
|
|
173
176
|
},
|