@aarongoldenthal/eslint-config-standard 42.0.0 → 42.0.1

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/vitest-config.js +7 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/eslint-config-standard",
3
- "version": "42.0.0",
3
+ "version": "42.0.1",
4
4
  "description": "Standard ESLint configuration settings",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -51,24 +51,24 @@
51
51
  "homepage": "https://gitlab.com/gitlab-ci-utils/eslint-config-standard",
52
52
  "dependencies": {
53
53
  "@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
54
- "@vitest/eslint-plugin": "1.4.3",
54
+ "@vitest/eslint-plugin": "1.5.2",
55
55
  "eslint-config-prettier": "10.1.8",
56
- "eslint-plugin-jest": "29.2.1",
57
- "eslint-plugin-jsdoc": "61.4.1",
56
+ "eslint-plugin-jest": "29.2.2",
57
+ "eslint-plugin-jsdoc": "61.5.0",
58
58
  "eslint-plugin-n": "17.23.1",
59
- "eslint-plugin-playwright": "2.3.0",
59
+ "eslint-plugin-playwright": "2.4.0",
60
60
  "eslint-plugin-promise": "7.2.1",
61
61
  "eslint-plugin-unicorn": "62.0.0",
62
62
  "globals": "16.5.0"
63
63
  },
64
64
  "devDependencies": {
65
65
  "@eslint/config-inspector": "1.4.2",
66
- "@vitest/coverage-v8": "4.0.13",
67
- "eslint": "9.39.1",
66
+ "@vitest/coverage-v8": "4.0.15",
67
+ "eslint": "9.39.2",
68
68
  "jest": "30.2.0",
69
- "markdownlint-cli2": "0.19.1",
70
- "prettier": "3.6.2",
71
- "vitest": "4.0.13"
69
+ "markdownlint-cli2": "0.20.0",
70
+ "prettier": "3.7.4",
71
+ "vitest": "4.0.15"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "eslint": "^9.22.0"
package/vitest-config.js CHANGED
@@ -23,22 +23,22 @@ const config = defineConfig({
23
23
  'vitest/max-nested-describe': ['error', { max: 3 }],
24
24
  'vitest/no-alias-methods': 'error',
25
25
  'vitest/no-commented-out-tests': 'error', // Recommended
26
- 'vitest/no-conditional-expect': 'error',
26
+ 'vitest/no-conditional-expect': 'error', // Recommended
27
27
  'vitest/no-conditional-in-test': 'error',
28
28
  'vitest/no-conditional-tests': 'error',
29
- 'vitest/no-disabled-tests': 'error',
29
+ 'vitest/no-disabled-tests': 'error', // Recommended
30
30
  'vitest/no-duplicate-hooks': 'error',
31
- 'vitest/no-focused-tests': 'error',
31
+ 'vitest/no-focused-tests': 'error', // Recommended
32
32
  'vitest/no-hooks': 'off',
33
33
  'vitest/no-identical-title': 'error', // Recommended
34
34
  'vitest/no-import-node-test': 'error', // Recommended
35
35
  'vitest/no-importing-vitest-globals': 'off',
36
- 'vitest/no-interpolation-in-snapshots': 'error',
36
+ 'vitest/no-interpolation-in-snapshots': 'error', // Recommended
37
37
  'vitest/no-large-snapshots': 'off',
38
- 'vitest/no-mocks-import': 'error',
38
+ 'vitest/no-mocks-import': 'error', // Recommended
39
39
  'vitest/no-restricted-matchers': 'off',
40
40
  'vitest/no-restricted-vi-methods': 'off',
41
- 'vitest/no-standalone-expect': 'error',
41
+ 'vitest/no-standalone-expect': 'error', // Recommended
42
42
  'vitest/no-test-prefixes': 'error',
43
43
  'vitest/no-test-return-statement': 'error',
44
44
  'vitest/padding-around-after-all-blocks': 'off',
@@ -84,7 +84,7 @@ const config = defineConfig({
84
84
  'vitest/require-top-level-describe': 'error',
85
85
  'vitest/valid-describe-callback': 'error', // Recommended
86
86
  'vitest/valid-expect': 'error', // Recommended
87
- 'vitest/valid-expect-in-promise': 'error',
87
+ 'vitest/valid-expect-in-promise': 'error', // Recommended
88
88
  'vitest/valid-title': 'error', // Recommended
89
89
  'vitest/warn-todo': 'error'
90
90
  }