@effect-app/eslint-codegen-model 1.34.2 → 1.35.0

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.
@@ -0,0 +1,24 @@
1
+ import path from "node:path"
2
+ import { fileURLToPath } from "node:url"
3
+ import { augmentedConfig } from "../../eslint.base.config.mjs"
4
+
5
+ const __filename = fileURLToPath(import.meta.url)
6
+ const __dirname = path.dirname(__filename)
7
+
8
+ export default [
9
+ ...augmentedConfig(__dirname, false),
10
+ {
11
+ ignores: [
12
+ "**/*.js",
13
+ "**/*.jsx",
14
+ "**/*.d.ts",
15
+ "node_modules/"
16
+ ]
17
+ },
18
+ {
19
+ rules: {
20
+ "@typescript-eslint/no-empty-interface": "off",
21
+ "@typescript-eslint/no-explicit-any": "warn",
22
+ }
23
+ }
24
+ ]
package/package.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "name": "@effect-app/eslint-codegen-model",
3
3
  "description": "Contains eslint helpers",
4
4
  "sideEffects": false,
5
- "version": "1.34.2",
5
+ "version": "1.35.0",
6
6
  "dependencies": {
7
- "@babel/generator": "7.26.9",
8
- "@babel/parser": "7.26.9",
9
- "@typescript-eslint/utils": "8.26.0",
7
+ "@babel/generator": "7.26.10",
8
+ "@babel/parser": "7.26.10",
9
+ "@typescript-eslint/utils": "8.27.0",
10
10
  "eslint-plugin-codegen": "0.17.0",
11
11
  "glob": "8.1.0",
12
12
  "io-ts": "2.2.22",
@@ -15,21 +15,21 @@
15
15
  "lodash": "4.17.21"
16
16
  },
17
17
  "peerDependencies": {
18
- "effect": "^3.13.8"
18
+ "effect": "^3.14.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@babel/cli": "^7.26.4",
22
- "@babel/core": "^7.26.9",
22
+ "@babel/core": "^7.26.10",
23
23
  "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
24
24
  "@babel/plugin-syntax-import-attributes": "^7.26.0",
25
25
  "@babel/plugin-transform-modules-commonjs": "^7.26.3",
26
26
  "babel-plugin-replace-import-extension": "^1.1.5",
27
- "@babel/types": "7.26.9",
27
+ "@babel/types": "7.26.10",
28
28
  "@types/babel__generator": "7.6.8",
29
29
  "@types/babel__traverse": "7.20.6",
30
30
  "@types/glob": "8.1.0",
31
31
  "@types/lodash": "4.17.16",
32
- "effect": "^3.13.8",
32
+ "effect": "^3.14.0",
33
33
  "madge": "8.0.0",
34
34
  "typescript": "^5.8.2"
35
35
  },
package/.eslintignore DELETED
@@ -1,4 +0,0 @@
1
- **/*.js
2
- **/*.jsx
3
- **/*.d.ts
4
- node_modules/
package/.eslintrc.cjs DELETED
@@ -1,11 +0,0 @@
1
- const makeBase = require("../../.eslintrc.base")
2
- const base = makeBase(__dirname, true)
3
-
4
- module.exports = {
5
- ...base,
6
- rules: {
7
- ...base.rules,
8
- 'codegen/codegen': ['error', { presets: require('@effect-app/eslint-codegen-model') }],
9
- "@typescript-eslint/no-empty-interface": "off"
10
- }
11
- }