@pobammer-ts/small-rules 2.17.0 → 2.18.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.
- package/dist/index.d.ts +15 -1
- package/dist/index.js +10 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -473,7 +473,21 @@ declare const smallRules: import("oxlint-plugin-utilities").Plugin<{
|
|
|
473
473
|
};
|
|
474
474
|
readonly type: "object";
|
|
475
475
|
}], "avoidChainingStateUpdates", undefined>;
|
|
476
|
-
"no-chained-type-assertions": import("oxlint-plugin-utilities").CreateOnceRule<
|
|
476
|
+
"no-chained-type-assertions": import("oxlint-plugin-utilities").CreateOnceRule<readonly [{
|
|
477
|
+
readonly additionalProperties: false;
|
|
478
|
+
readonly properties: {
|
|
479
|
+
readonly allowedTargets: {
|
|
480
|
+
readonly default: readonly [];
|
|
481
|
+
readonly description: "Identifier names allowed as the final target of a single `as unknown/any/never as T` bridge, e.g. `vector` or `Vector3`.";
|
|
482
|
+
readonly items: {
|
|
483
|
+
readonly type: "string";
|
|
484
|
+
};
|
|
485
|
+
readonly type: "array";
|
|
486
|
+
readonly uniqueItems: true;
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
readonly type: "object";
|
|
490
|
+
}], "chained", undefined>;
|
|
477
491
|
"no-color3-constructor": import("oxlint-plugin-utilities").CreateRule<readonly [{
|
|
478
492
|
readonly additionalProperties: false;
|
|
479
493
|
readonly properties: {
|