@effect-app/eslint-shared-config 0.1.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @effect-app/eslint-shared-config
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - cec6576: set @typescript-eslint/unbound-method as error (note: it's a type aware rule)
8
+ - @effect-app/eslint-codegen-model@1.44.0
9
+
10
+ ## 0.2.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 6d8c512: update packages
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [6d8c512]
19
+ - @effect-app/eslint-codegen-model@1.44.0
20
+
3
21
  ## 0.1.1
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/eslint-shared-config",
3
- "version": "0.1.1",
3
+ "version": "0.2.1",
4
4
  "description": "Shared flat ESLint base & vue configs for effect-app monorepo",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -22,10 +22,10 @@
22
22
  "eslint-plugin-codegen": "0.17.0",
23
23
  "eslint-plugin-sort-destructure-keys": "2.0.0",
24
24
  "eslint-plugin-unused-imports": "4.2.0",
25
- "@ben_12/eslint-plugin-dprint": "1.7.5",
25
+ "@ben_12/eslint-plugin-dprint": "1.7.6",
26
26
  "eslint-plugin-formatjs": "5.4.0",
27
27
  "@vue/eslint-config-typescript": "14.6.0",
28
- "typescript-eslint": "8.43.0",
28
+ "typescript-eslint": "8.44.0",
29
29
  "eslint-plugin-vue": "10.4.0",
30
30
  "dprint-plugin-malva": "0.14.3",
31
31
  "dprint-plugin-markup": "0.23.4",
@@ -35,11 +35,11 @@
35
35
  "eslint-import-resolver-webpack": "0.13.10",
36
36
  "eslint-plugin-simple-import-sort": "12.1.1",
37
37
  "eslint-watch": "^8.0.0",
38
- "@typescript-eslint/eslint-plugin": "8.43.0",
39
- "@typescript-eslint/parser": "8.43.0",
38
+ "@typescript-eslint/eslint-plugin": "8.44.0",
39
+ "@typescript-eslint/parser": "8.44.0",
40
40
  "@dprint/formatter": "0.4.1",
41
41
  "jsonc-parser": "3.3.1",
42
- "@effect-app/eslint-codegen-model": "1.43.0"
42
+ "@effect-app/eslint-codegen-model": "1.44.0"
43
43
  },
44
44
  "bundledDependencies": [
45
45
  "@ben_12/eslint-plugin-dprint"
@@ -50,7 +50,7 @@
50
50
  "peerDependencies": {
51
51
  "eslint": "^9.35.0",
52
52
  "typescript": "~5.9.2",
53
- "dprint": "^0.50.1"
53
+ "dprint": "^0.50.2"
54
54
  },
55
55
  "scripts": {
56
56
  "watch": "pnpm build -w",
@@ -150,7 +150,7 @@ export function baseConfig(dirName, forceTS = false, project = undefined) {
150
150
  "@typescript-eslint/no-unsafe-argument": "warn",
151
151
  "@typescript-eslint/no-unsafe-member-access": "warn",
152
152
  "@typescript-eslint/no-misused-promises": "warn",
153
- "@typescript-eslint/unbound-method": "warn",
153
+ "@typescript-eslint/unbound-method": "error",
154
154
  "@typescript-eslint/only-throw-error": "off",
155
155
  "@typescript-eslint/no-base-to-string": "warn",
156
156
  "@typescript-eslint/no-floating-promises": "warn",