@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/eslint-config",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "Wistia's ESLint configurations",
5
5
  "packageManager": "yarn@4.12.0",
6
6
  "type": "module",
@@ -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
- 'vitest/valid-title': 'error',
314
+ // decision: `allowArguments` avoids conflict with `prefer-describe-function-title` rule, which is enabled
315
+ 'vitest/valid-title': ['error', { allowArguments: true }],
315
316
  };
@@ -330,7 +330,7 @@
330
330
  "vitest/valid-title": [
331
331
  2,
332
332
  {
333
- "allowArguments": false,
333
+ "allowArguments": true,
334
334
  "disallowedWords": [],
335
335
  "ignoreTypeOfDescribeName": false,
336
336
  },