@mrpalmer/eslint-config 2.3.0 → 2.3.1
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/package.json +11 -5
- package/.turbo/turbo-build.log +0 -8
- package/CHANGELOG.md +0 -39
- package/tsconfig.json +0 -10
- package/turbo.json +0 -8
package/package.json
CHANGED
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrpalmer/eslint-config",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Mike Palmer's personal ESLint rules",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"types": "./types/index.d.ts",
|
|
10
|
+
"default": "./index.js"
|
|
11
11
|
},
|
|
12
12
|
"./package.json": "./package.json"
|
|
13
13
|
},
|
|
14
|
-
"
|
|
14
|
+
"module": "index.js",
|
|
15
15
|
"types": "types/index.d.ts",
|
|
16
|
+
"files": [
|
|
17
|
+
"index.js",
|
|
18
|
+
"configs",
|
|
19
|
+
"types",
|
|
20
|
+
"utils"
|
|
21
|
+
],
|
|
16
22
|
"scripts": {
|
|
17
23
|
"prebuild": "rm -rf types",
|
|
18
24
|
"build": "tsc",
|
|
@@ -27,7 +33,7 @@
|
|
|
27
33
|
"dependencies": {
|
|
28
34
|
"@eslint-react/eslint-plugin": "^2.2.2",
|
|
29
35
|
"@eslint/js": "^9.31.0",
|
|
30
|
-
"@mrpalmer/eslint-plugin": "^1.0.
|
|
36
|
+
"@mrpalmer/eslint-plugin": "^1.0.3",
|
|
31
37
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
32
38
|
"eslint-plugin-import-x": "^4.16.1",
|
|
33
39
|
"eslint-plugin-jest": "^29.0.1",
|
package/.turbo/turbo-build.log
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# @mrpalmer/eslint-config
|
|
2
|
-
|
|
3
|
-
## 2.3.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 5e223a2: Upgrade plugins and configure new rules
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- b99f7df: Update dependencies
|
|
12
|
-
- Updated dependencies [03c9f7f]
|
|
13
|
-
- @mrpalmer/eslint-plugin@1.0.2
|
|
14
|
-
|
|
15
|
-
## 2.2.0
|
|
16
|
-
|
|
17
|
-
### Minor Changes
|
|
18
|
-
|
|
19
|
-
- afbdd32: Replace `eslint-plugin-react` with `@eslint-react/eslint-plugin`
|
|
20
|
-
|
|
21
|
-
### Patch Changes
|
|
22
|
-
|
|
23
|
-
- 1e43272: Update ESLint plugins
|
|
24
|
-
- 32711bf: Fix order of configs in "all"
|
|
25
|
-
- df14ce7: Export TypeScript types
|
|
26
|
-
- Updated dependencies [96a657e]
|
|
27
|
-
- @mrpalmer/eslint-plugin@1.0.1
|
|
28
|
-
|
|
29
|
-
## 2.1.0
|
|
30
|
-
|
|
31
|
-
### Minor Changes
|
|
32
|
-
|
|
33
|
-
- 63cec80: - Replace `eslint-plugin-import` with `eslint-plugin-import-x`
|
|
34
|
-
- Add `@mrpalmer/eslint-plugin` to default config
|
|
35
|
-
|
|
36
|
-
### Patch Changes
|
|
37
|
-
|
|
38
|
-
- Updated dependencies [1e5fa18]
|
|
39
|
-
- @mrpalmer/eslint-plugin@1.0.0
|
package/tsconfig.json
DELETED