@stanlemon/eslint-config 3.0.46 → 3.0.48

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/eslint.config.cjs CHANGED
@@ -10,13 +10,7 @@ const jestDom = require("eslint-plugin-jest-dom");
10
10
 
11
11
  module.exports = tseslint.config(
12
12
  {
13
- ignores: [
14
- "**/node_modules/",
15
- ".git/",
16
- "**/dist/",
17
- // This is an override of @types/pouchdb-core which we want to ignore when linting
18
- "**/types-pouchdb-core/",
19
- ],
13
+ ignores: ["**/node_modules/", ".git/", "**/dist/"],
20
14
  },
21
15
  eslint.configs.recommended,
22
16
  prettierPlugin,
package/eslint.config.mjs CHANGED
@@ -9,13 +9,7 @@ import jestDom from "eslint-plugin-jest-dom";
9
9
 
10
10
  export default tseslint.config(
11
11
  {
12
- ignores: [
13
- "**/node_modules/",
14
- ".git/",
15
- "**/dist/",
16
- // This is an override of @types/pouchdb-core which we want to ignore when linting
17
- "**/types-pouchdb-core/",
18
- ],
12
+ ignores: ["**/node_modules/", ".git/", "**/dist/"],
19
13
  },
20
14
  eslint.configs.recommended,
21
15
  prettierPlugin,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stanlemon/eslint-config",
3
- "version": "3.0.46",
3
+ "version": "3.0.48",
4
4
  "description": "My typical eslint setup, but without all the copy and paste.",
5
5
  "keywords": [
6
6
  "eslint"
@@ -8,7 +8,7 @@
8
8
  "author": "Stan Lemon <stanlemon@users.noreply.github.com>",
9
9
  "license": "MIT",
10
10
  "engines": {
11
- "node": ">=22.15.1"
11
+ "node": ">=22.18.0"
12
12
  },
13
13
  "type": "module",
14
14
  "exports": {
@@ -22,8 +22,8 @@
22
22
  "lint:fix": "eslint --fix ."
23
23
  },
24
24
  "dependencies": {
25
- "@eslint/js": "^9.31.0",
26
- "eslint": "^9.31.0",
25
+ "@eslint/js": "^9.32.0",
26
+ "eslint": "^9.32.0",
27
27
  "eslint-config-prettier": "^10.1.8",
28
28
  "eslint-config-react": "^1.1.7",
29
29
  "eslint-config-typescript": "^3.0.0",
@@ -31,11 +31,11 @@
31
31
  "eslint-plugin-import": "^2.32.0",
32
32
  "eslint-plugin-jest": "^29.0.1",
33
33
  "eslint-plugin-jest-dom": "^5.5.0",
34
- "eslint-plugin-prettier": "^5.5.3",
34
+ "eslint-plugin-prettier": "^5.5.4",
35
35
  "eslint-plugin-react": "^7.37.5",
36
36
  "globals": "^16.3.0",
37
37
  "prettier": "^3.6.2",
38
- "typescript": "^5.8.3",
39
- "typescript-eslint": "^8.33.0"
38
+ "typescript": "^5.9.2",
39
+ "typescript-eslint": "^8.39.0"
40
40
  }
41
41
  }