@aarongoldenthal/eslint-config-standard 24.0.1 → 25.0.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/eslint-config-standard",
3
- "version": "24.0.1",
3
+ "version": "25.0.0",
4
4
  "description": "Standard ESLint configuration settings",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -35,23 +35,23 @@
35
35
  },
36
36
  "homepage": "https://gitlab.com/gitlab-ci-utils/eslint-config-standard",
37
37
  "devDependencies": {
38
- "eslint": "8.54.0",
38
+ "eslint": "8.56.0",
39
39
  "jest": "29.7.0",
40
40
  "jest-junit": "16.0.0",
41
41
  "markdownlint-cli2": "0.11.0",
42
- "prettier": "3.1.0"
42
+ "prettier": "3.1.1"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@eslint-community/eslint-plugin-eslint-comments": "4.1.0",
46
46
  "eslint": "^8.27.0",
47
- "eslint-config-prettier": "9.0.0",
47
+ "eslint-config-prettier": "9.1.0",
48
48
  "eslint-plugin-jest": "27.6.0",
49
- "eslint-plugin-jsdoc": "46.9.0",
50
- "eslint-plugin-n": "16.3.1",
51
- "eslint-plugin-playwright": "0.18.0",
49
+ "eslint-plugin-jsdoc": "46.9.1",
50
+ "eslint-plugin-n": "16.5.0",
51
+ "eslint-plugin-playwright": "0.20.0",
52
52
  "eslint-plugin-promise": "6.1.1",
53
53
  "eslint-plugin-sonarjs": "0.23.0",
54
- "eslint-plugin-unicorn": "49.0.0",
55
- "eslint-plugin-vitest": "0.3.10"
54
+ "eslint-plugin-unicorn": "50.0.1",
55
+ "eslint-plugin-vitest": "0.3.18"
56
56
  }
57
57
  }
@@ -30,6 +30,7 @@ module.exports = {
30
30
  'playwright/prefer-strict-equal': 'error',
31
31
  'playwright/prefer-to-be': 'error',
32
32
  'playwright/prefer-to-contain': 'error',
33
+ 'playwright/prefer-to-have-count': 'error',
33
34
  'playwright/prefer-to-have-length': 'error',
34
35
  'playwright/prefer-web-first-assertions': 'error',
35
36
  'playwright/require-soft-assertions': 'off',
package/unicorn-config.js CHANGED
@@ -54,6 +54,7 @@ module.exports = {
54
54
  'unicorn/no-this-assignment': 'error', // Recommended
55
55
  'unicorn/no-typeof-undefined': 'error', // Recommended
56
56
  'unicorn/no-unnecessary-await': 'error', // Recommended
57
+ 'unicorn/no-unnecessary-polyfills': 'error', // Recommended
57
58
  'unicorn/no-unreadable-array-destructuring': 'error', // Recommended
58
59
  'unicorn/no-unreadable-iife': 'error', // Recommended
59
60
  'unicorn/no-unused-properties': 'error',