angular-eslint-zoneless 1.2.1 → 1.2.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/index.d.ts +1 -1
- package/index.js +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { ConfigObject } from "@eslint/core";
|
|
|
2
2
|
declare const plugin: {
|
|
3
3
|
configs: {
|
|
4
4
|
readonly recommended: ConfigObject<import("@eslint/core").RulesConfig>;
|
|
5
|
-
readonly
|
|
5
|
+
readonly strict: ConfigObject<import("@eslint/core").RulesConfig>;
|
|
6
6
|
};
|
|
7
7
|
meta: {
|
|
8
8
|
name: string;
|
package/index.js
CHANGED
|
@@ -61,8 +61,8 @@ const plugin = {
|
|
|
61
61
|
get recommended() {
|
|
62
62
|
return recommended;
|
|
63
63
|
},
|
|
64
|
-
get
|
|
65
|
-
return
|
|
64
|
+
get strict() {
|
|
65
|
+
return strict;
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
meta: { name, version },
|
|
@@ -116,7 +116,7 @@ const recommended = {
|
|
|
116
116
|
[`${name}/${noZonejsTestingFunctions.ruleName}`]: "error",
|
|
117
117
|
},
|
|
118
118
|
};
|
|
119
|
-
const
|
|
119
|
+
const strict = {
|
|
120
120
|
plugins: {
|
|
121
121
|
[name]: plugin
|
|
122
122
|
},
|