@wistia/eslint-config 2.4.2 → 2.4.3
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @wistia/eslint-config
|
|
2
2
|
|
|
3
|
+
## 2.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#454](https://github.com/wistia/eslint-config/pull/454) [`37dde02`](https://github.com/wistia/eslint-config/commit/37dde02aff28e4f30537b3404c46d92952824391) Thanks [@okize](https://github.com/okize)! - fix: update `valid-title` rule to avoid conflict with `prefer-describe-function-title`
|
|
8
|
+
|
|
3
9
|
## 2.4.2
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
package/src/rules/vitest.mjs
CHANGED
|
@@ -311,5 +311,6 @@ export default {
|
|
|
311
311
|
|
|
312
312
|
// Enforce valid titles
|
|
313
313
|
// https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/valid-title.md
|
|
314
|
-
|
|
314
|
+
// decision: `allowArguments` avoids conflict with `prefer-describe-function-title` rule, which is enabled
|
|
315
|
+
'vitest/valid-title': ['error', { allowArguments: true }],
|
|
315
316
|
};
|