@jgarber/eslint-config 4.2.1 → 5.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.
Files changed (2) hide show
  1. package/index.js +3 -7
  2. package/package.json +7 -7
package/index.js CHANGED
@@ -43,12 +43,8 @@ export default [
43
43
 
44
44
  /**
45
45
  * @see {@link https://www.npmjs.com/package/eslint-plugin-regexp}
46
- * @see {@link https://github.com/ota-meshi/eslint-plugin-regexp/issues/695}
47
46
  */
48
- {
49
- plugins: { regexp },
50
- rules: regexp.configs.recommended.rules,
51
- },
47
+ regexp.configs["flat/recommended"],
52
48
 
53
49
  /**
54
50
  * @see {@link https://www.npmjs.com/package/eslint-plugin-sort-class-members}
@@ -165,9 +161,9 @@ export default [
165
161
  * Sorts tags by a specified sequence according to tag name, optionally
166
162
  * adding line breaks between tag groups.
167
163
  *
168
- * @see {@link https://github.com/gajus/eslint-plugin-jsdoc/blob/HEAD/docs/rules/sort-tags.md#user-content-sort-tags-options-linesbetween}
164
+ * @see {@link https://github.com/gajus/eslint-plugin-jsdoc/blob/HEAD/docs/rules/sort-tags.md}
169
165
  */
170
- "jsdoc/sort-tags": ["warn"],
166
+ "jsdoc/sort-tags": ["warn", { alphabetizeExtras: true }],
171
167
 
172
168
  /**
173
169
  * Enforce lines (or no lines) between tags.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jgarber/eslint-config",
3
- "version": "4.2.1",
3
+ "version": "5.0.0",
4
4
  "description": "Shareable ESLint configuration.",
5
5
  "keywords": [
6
6
  "config",
@@ -30,19 +30,19 @@
30
30
  "test": "NODE_V8_COVERAGE=coverage node --experimental-test-coverage --test"
31
31
  },
32
32
  "dependencies": {
33
- "@eslint/js": "^8.56.0",
34
- "@stylistic/eslint-plugin": "^1.6.2",
33
+ "@eslint/js": "^9.3.0",
34
+ "@stylistic/eslint-plugin": "^2.1.0",
35
35
  "eslint-plugin-array-func": "^5.0.1",
36
- "eslint-plugin-jsdoc": "^48.1.0",
36
+ "eslint-plugin-jsdoc": "^48.2.5",
37
37
  "eslint-plugin-n": "^16.6.2",
38
- "eslint-plugin-regexp": "^2.2.0",
38
+ "eslint-plugin-regexp": "^2.6.0",
39
39
  "eslint-plugin-sort-class-members": "^1.20.0"
40
40
  },
41
41
  "devDependencies": {
42
- "eslint": "^8.56.0"
42
+ "eslint": "^9.3.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "eslint": ">=8.56.0"
45
+ "eslint": ">=9.3.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"