@webpieces/dev-config 0.2.73 → 0.2.75

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,15 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "title": "Validate No Inline Types Executor",
4
+ "description": "Validates that inline type literals are not used - prefer named types/interfaces/classes.",
5
+ "type": "object",
6
+ "properties": {
7
+ "mode": {
8
+ "type": "string",
9
+ "enum": ["OFF", "NEW_METHODS", "MODIFIED_AND_NEW_METHODS", "MODIFIED_FILES", "ALL"],
10
+ "description": "OFF: skip validation. NEW_METHODS: only new methods in diff. MODIFIED_AND_NEW_METHODS: new methods + methods with changes. MODIFIED_FILES: all inline types in modified files. ALL: all inline types everywhere.",
11
+ "default": "OFF"
12
+ }
13
+ },
14
+ "required": []
15
+ }
package/executors.json CHANGED
@@ -69,6 +69,16 @@
69
69
  "implementation": "./architecture/executors/validate-return-types/executor",
70
70
  "schema": "./architecture/executors/validate-return-types/schema.json",
71
71
  "description": "Validate methods have explicit return type annotations"
72
+ },
73
+ "validate-no-inline-types": {
74
+ "implementation": "./architecture/executors/validate-no-inline-types/executor",
75
+ "schema": "./architecture/executors/validate-no-inline-types/schema.json",
76
+ "description": "Validate no inline type literals are used - prefer named types"
77
+ },
78
+ "validate-no-any-unknown": {
79
+ "implementation": "./architecture/executors/validate-no-any-unknown/executor",
80
+ "schema": "./architecture/executors/validate-no-any-unknown/schema.json",
81
+ "description": "Validate no any/unknown keywords are used - use specific types instead"
72
82
  }
73
83
  }
74
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webpieces/dev-config",
3
- "version": "0.2.73",
3
+ "version": "0.2.75",
4
4
  "description": "Development configuration, scripts, and patterns for WebPieces projects",
5
5
  "type": "commonjs",
6
6
  "bin": {