@effect-app/eslint-codegen-model 0.59.0 → 0.59.2

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/.eslintignore ADDED
@@ -0,0 +1,4 @@
1
+ **/*.js
2
+ **/*.jsx
3
+ **/*.d.ts
4
+ node_modules/
package/.eslintrc.cjs ADDED
@@ -0,0 +1,11 @@
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
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @effect-app/eslint-codegen-model
2
2
 
3
+ ## 0.59.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fd7c69: fix for comments
8
+
9
+ ## 0.59.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 5243e13: remove need for ts compiler
14
+
3
15
  ## 0.59.0
4
16
 
5
17
  ### Minor Changes