@jgarber/eslint-config 5.0.0 → 6.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.
Files changed (2) hide show
  1. package/index.js +9 -0
  2. package/package.json +7 -7
package/index.js CHANGED
@@ -172,6 +172,15 @@ export default [
172
172
  */
173
173
  "jsdoc/tag-lines": ["warn", "any", { startLines: 1 }],
174
174
 
175
+ /*
176
+ * Disallow unsupported Node.js built-in APIs on the specified version .
177
+ *
178
+ * @see {@link https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-unsupported-features/node-builtins.md}
179
+ */
180
+ "n/no-unsupported-features/node-builtins": ["error", {
181
+ allowExperimental: true,
182
+ }],
183
+
175
184
  /**
176
185
  * Disallow unused variables.
177
186
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jgarber/eslint-config",
3
- "version": "5.0.0",
3
+ "version": "6.1.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": "^9.3.0",
34
- "@stylistic/eslint-plugin": "^2.1.0",
33
+ "@eslint/js": "^9.6.0",
34
+ "@stylistic/eslint-plugin": "^2.6.0-beta.0",
35
35
  "eslint-plugin-array-func": "^5.0.1",
36
- "eslint-plugin-jsdoc": "^48.2.5",
37
- "eslint-plugin-n": "^16.6.2",
36
+ "eslint-plugin-jsdoc": "^48.7.0",
37
+ "eslint-plugin-n": "^17.9.0",
38
38
  "eslint-plugin-regexp": "^2.6.0",
39
39
  "eslint-plugin-sort-class-members": "^1.20.0"
40
40
  },
41
41
  "devDependencies": {
42
- "eslint": "^9.3.0"
42
+ "eslint": "^9.6.0"
43
43
  },
44
44
  "peerDependencies": {
45
- "eslint": ">=9.3.0"
45
+ "eslint": ">=9.6.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"