@apify/oxlint-config 0.2.7 → 0.2.8
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 +4 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -108,6 +108,9 @@ const sharedConfig = {
|
|
|
108
108
|
// notion of chai's `.to.*` modifier chain. Cypress tests live in
|
|
109
109
|
// the same workspaces as vitest tests, so file-glob scoping isn't
|
|
110
110
|
// reliable — disable globally.
|
|
111
|
+
// - require-to-throw-message: opinion (mirrors the already-disabled
|
|
112
|
+
// `jest/require-to-throw-message`); fires hundreds of times in
|
|
113
|
+
// existing test suites with no real signal.
|
|
111
114
|
'vitest/hoisted-apis-on-top': 'off',
|
|
112
115
|
'vitest/require-mock-type-parameters': 'off',
|
|
113
116
|
'vitest/consistent-each-for': 'off',
|
|
@@ -115,6 +118,7 @@ const sharedConfig = {
|
|
|
115
118
|
'vitest/require-local-test-context-for-concurrent-snapshots': 'off',
|
|
116
119
|
'vitest/valid-describe-callback': 'off',
|
|
117
120
|
'vitest/valid-expect': 'off',
|
|
121
|
+
'vitest/require-to-throw-message': 'off',
|
|
118
122
|
'typescript/unbound-method': 'off',
|
|
119
123
|
'typescript/restrict-template-expressions': 'off',
|
|
120
124
|
'typescript/no-useless-default-assignment': 'off',
|