@aarongoldenthal/eslint-config-standard 31.0.0 → 31.1.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/jsdoc-config.js CHANGED
@@ -43,6 +43,7 @@ module.exports = {
43
43
  'jsdoc/implements-on-classes': 'error', // Recommended
44
44
  'jsdoc/imports-as-dependencies': 'error',
45
45
  'jsdoc/informative-docs': 'error',
46
+ 'jsdoc/lines-before-block': 'off',
46
47
  'jsdoc/match-description': 'error',
47
48
  'jsdoc/multiline-blocks': 'error', // Recommended
48
49
  'jsdoc/no-bad-blocks': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/eslint-config-standard",
3
- "version": "31.0.0",
3
+ "version": "31.1.0",
4
4
  "description": "Standard ESLint configuration settings",
5
5
  "scripts": {
6
6
  "hooks:pre-commit": "npm run lint && npm run prettier:check",
@@ -33,24 +33,24 @@
33
33
  },
34
34
  "homepage": "https://gitlab.com/gitlab-ci-utils/eslint-config-standard",
35
35
  "dependencies": {
36
- "@eslint-community/eslint-plugin-eslint-comments": "4.3.0",
36
+ "@eslint-community/eslint-plugin-eslint-comments": "4.4.0",
37
+ "@vitest/eslint-plugin": "1.1.4",
37
38
  "eslint-config-prettier": "9.1.0",
38
- "eslint-plugin-jest": "28.6.0",
39
- "eslint-plugin-jsdoc": "48.9.2",
40
- "eslint-plugin-n": "17.10.1",
39
+ "eslint-plugin-jest": "28.8.3",
40
+ "eslint-plugin-jsdoc": "50.2.4",
41
+ "eslint-plugin-n": "17.10.3",
41
42
  "eslint-plugin-playwright": "1.6.2",
42
- "eslint-plugin-promise": "7.0.0",
43
+ "eslint-plugin-promise": "7.1.0",
43
44
  "eslint-plugin-sonarjs": "1.0.4",
44
45
  "eslint-plugin-unicorn": "55.0.0",
45
- "eslint-plugin-vitest": "0.5.4",
46
- "globals": "15.8.0"
46
+ "globals": "15.9.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@eslint/config-inspector": "0.5.2",
50
- "eslint": "9.8.0",
49
+ "@eslint/config-inspector": "0.5.4",
50
+ "eslint": "9.11.1",
51
51
  "jest": "29.7.0",
52
52
  "jest-junit": "16.0.0",
53
- "markdownlint-cli2": "0.13.0",
53
+ "markdownlint-cli2": "0.14.0",
54
54
  "prettier": "3.3.3"
55
55
  },
56
56
  "peerDependencies": {
package/vitest-config.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const vitestPlugin = require('eslint-plugin-vitest');
3
+ const vitestPlugin = require('@vitest/eslint-plugin');
4
4
 
5
5
  module.exports = {
6
6
  files: ['**/__tests__/**/*.{js,mjs}', '**/?(*.)+(spec|test).{js,mjs}'],
@@ -40,6 +40,14 @@ module.exports = {
40
40
  'vitest/no-standalone-expect': 'error',
41
41
  'vitest/no-test-prefixes': 'error',
42
42
  'vitest/no-test-return-statement': 'error',
43
+ 'vitest/padding-around-after-all-blocks': 'off',
44
+ 'vitest/padding-around-after-each-blocks': 'off',
45
+ 'vitest/padding-around-all': 'off',
46
+ 'vitest/padding-around-before-all-blocks': 'off',
47
+ 'vitest/padding-around-before-each-blocks': 'off',
48
+ 'vitest/padding-around-describe-blocks': 'off',
49
+ 'vitest/padding-around-expect-groups': 'off',
50
+ 'vitest/padding-around-test-blocks': 'off',
43
51
  'vitest/prefer-called-with': 'error',
44
52
  'vitest/prefer-comparison-matcher': 'error',
45
53
  'vitest/prefer-each': 'error',