eslint-config-reverentgeek 6.3.0 → 6.3.2

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/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -37,7 +37,7 @@ The _node-esm_ config adds specific support for Node.js and ES modules (`import`
37
37
 
38
38
  ```js
39
39
  import { defineConfig } from "eslint/config"; // eslint-disable-line n/no-unpublished-import
40
- import rg from "eslint-config-reverentgeek"; // eslint-disable-line n/no-extraneous-import
40
+ import rg from "eslint-config-reverentgeek"; // eslint-disable-line n/no-unpublished-import
41
41
 
42
42
  export default defineConfig( {
43
43
  extends: [ rg.configs["node-esm"] ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-reverentgeek",
3
- "version": "6.3.0",
3
+ "version": "6.3.2",
4
4
  "description": "ESLint rules that ReverentGeek likes :)",
5
5
  "main": "src/index.js",
6
6
  "repository": {
@@ -19,14 +19,14 @@
19
19
  "author": "David Neal <david@reverentgeek.com> (https://reverentgeek.com)",
20
20
  "license": "MIT",
21
21
  "dependencies": {
22
- "@stylistic/eslint-plugin": "^5.4.0",
22
+ "@stylistic/eslint-plugin": "^5.5.0",
23
23
  "eslint-plugin-n": "^17.23.1",
24
- "globals": "^16.4.0"
24
+ "globals": "^16.5.0"
25
25
  },
26
26
  "devDependencies": {
27
- "eslint": "^9.36.0"
27
+ "eslint": "^9.39.0"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=18.0.0"
31
31
  }
32
- }
32
+ }