@ethang/eslint-config 21.7.3 → 21.7.5

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 +3 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
  # Config
54
54
 
55
- In **eslint.config.js**
55
+ In **eslint.config.ts**
56
56
 
57
57
  ```js
58
58
  import config from "@ethang/eslint-config/eslint.config.js";
@@ -85,8 +85,7 @@ export default tseslint.config(
85
85
 
86
86
  ```json
87
87
  "scripts": {
88
- "lint": "eslint",
89
- "lint:fix": "eslint . --fix",
88
+ "lint": "eslint . --fix"
90
89
  }
91
90
  ```
92
91
 
@@ -98,7 +97,7 @@ This config will also lint for browserslist features. Make sure to set this in p
98
97
  "browserslist": [
99
98
  "defaults and fully supports es6-module",
100
99
  "maintained node versions"
101
- ]
100
+ ],
102
101
  ```
103
102
 
104
103
  **Engines**
package/package.json CHANGED
@@ -9,17 +9,17 @@
9
9
  "@angular-eslint/eslint-plugin-template": "^19.3.0",
10
10
  "@angular-eslint/template-parser": "^19.3.0",
11
11
  "@cspell/eslint-plugin": "^8.18.1",
12
- "@eslint-react/eslint-plugin": "^1.42.1",
12
+ "@eslint-react/eslint-plugin": "^1.43.0",
13
13
  "@eslint/css": "0.6.0",
14
14
  "@eslint/js": "^9.24.0",
15
15
  "@eslint/json": "^0.11.0",
16
16
  "@eslint/markdown": "^6.3.0",
17
- "@tanstack/eslint-plugin-query": "^5.72.1",
17
+ "@tanstack/eslint-plugin-query": "^5.72.2",
18
18
  "@tanstack/eslint-plugin-router": "^1.115.0",
19
19
  "@typescript-eslint/parser": "^8.29.1",
20
20
  "angular-eslint": "19.3.0",
21
21
  "eslint": "^9.24.0",
22
- "eslint-config-prettier": "^10.1.1",
22
+ "eslint-config-prettier": "^10.1.2",
23
23
  "eslint-plugin-astro": "^1.3.1",
24
24
  "eslint-plugin-barrel-files": "^3.0.1",
25
25
  "eslint-plugin-compat": "^6.0.2",
@@ -59,7 +59,7 @@
59
59
  "url": "git+https://github.com/eglove/ethang-monorepo.git#master"
60
60
  },
61
61
  "type": "module",
62
- "version": "21.7.3",
62
+ "version": "21.7.5",
63
63
  "scripts": {
64
64
  "build": "bun build.ts && pnpm lint",
65
65
  "lint": "eslint . --fix && prettier src --write"