@cedarjs/eslint-plugin 6.0.0 → 7.0.0-canary.2982
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 +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare const meta: {
|
|
|
4
4
|
version: string;
|
|
5
5
|
};
|
|
6
6
|
export declare const rules: {
|
|
7
|
+
'cell-type-annotations': ESLintUtils.RuleModule<"needsTypeAnnotation" | "beforeQueryParamNeedsType", [], unknown, ESLintUtils.RuleListener>;
|
|
7
8
|
'process-env-computed': ESLintUtils.RuleModule<"unexpected", [], unknown, ESLintUtils.RuleListener>;
|
|
8
9
|
'service-type-annotations': ESLintUtils.RuleModule<"needsType", [], unknown, ESLintUtils.RuleListener>;
|
|
9
10
|
'unsupported-route-components': ESLintUtils.RuleModule<"unexpected", [], unknown, ESLintUtils.RuleListener>;
|
|
@@ -14,6 +15,7 @@ declare const plugin: {
|
|
|
14
15
|
version: string;
|
|
15
16
|
};
|
|
16
17
|
rules: {
|
|
18
|
+
'cell-type-annotations': ESLintUtils.RuleModule<"needsTypeAnnotation" | "beforeQueryParamNeedsType", [], unknown, ESLintUtils.RuleListener>;
|
|
17
19
|
'process-env-computed': ESLintUtils.RuleModule<"unexpected", [], unknown, ESLintUtils.RuleListener>;
|
|
18
20
|
'service-type-annotations': ESLintUtils.RuleModule<"needsType", [], unknown, ESLintUtils.RuleListener>;
|
|
19
21
|
'unsupported-route-components': ESLintUtils.RuleModule<"unexpected", [], unknown, ESLintUtils.RuleListener>;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AAS3D,eAAO,MAAM,IAAI;;;CAGhB,CAAA;AAED,eAAO,MAAM,KAAK;;;;;CAKwC,CAAA;AAE1D,QAAA,MAAM,MAAM;;;;;;;;;;;CAAkB,CAAA;AAE9B,eAAe,MAAM,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import pkgJson from "../package.json" with { type: "json" };
|
|
2
|
+
import { cellTypeAnnotations } from "./cell-type-annotations.js";
|
|
2
3
|
import { processEnvComputedRule } from "./process-env-computed.js";
|
|
3
4
|
import { serviceTypeAnnotations } from "./service-type-annotations.js";
|
|
4
5
|
import { unsupportedRouteComponents } from "./unsupported-route-components.js";
|
|
@@ -7,6 +8,7 @@ const meta = {
|
|
|
7
8
|
version: pkgJson.version
|
|
8
9
|
};
|
|
9
10
|
const rules = {
|
|
11
|
+
"cell-type-annotations": cellTypeAnnotations,
|
|
10
12
|
"process-env-computed": processEnvComputedRule,
|
|
11
13
|
"service-type-annotations": serviceTypeAnnotations,
|
|
12
14
|
"unsupported-route-components": unsupportedRouteComponents
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/eslint-plugin",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-canary.2982",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"eslint": "8.57.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@cedarjs/framework-tools": "
|
|
30
|
+
"@cedarjs/framework-tools": "7.0.0-canary.2982",
|
|
31
31
|
"@types/eslint": "8.56.12",
|
|
32
32
|
"@types/estree": "1.0.9",
|
|
33
33
|
"@typescript-eslint/parser": "8.60.1",
|