@nx/eslint-plugin 23.0.0 → 23.1.0-beta.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/README.md +1 -2
- package/dist/src/configs/angular.d.ts +1 -1
- package/dist/src/index.d.ts +18 -18
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -7,13 +7,12 @@
|
|
|
7
7
|
|
|
8
8
|
<div style="text-align: center;">
|
|
9
9
|
|
|
10
|
-
[](https://circleci.com/gh/nrwl/nx)
|
|
11
10
|
[]()
|
|
12
11
|
[](https://www.npmjs.com/package/nx)
|
|
13
12
|
[]()
|
|
14
13
|
[](http://commitizen.github.io/cz-cli/)
|
|
15
|
-
[](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
16
14
|
[](https://go.nx.dev/community)
|
|
15
|
+
[](https://nx.dev/docs/features/ci-features/sandboxing)
|
|
17
16
|
|
|
18
17
|
</div>
|
|
19
18
|
|
package/dist/src/index.d.ts
CHANGED
|
@@ -248,7 +248,7 @@ declare const configs: {
|
|
|
248
248
|
plugins: string[];
|
|
249
249
|
extends: string[];
|
|
250
250
|
parserOptions: {
|
|
251
|
-
project:
|
|
251
|
+
project: undefined[];
|
|
252
252
|
};
|
|
253
253
|
rules: {};
|
|
254
254
|
};
|
|
@@ -263,14 +263,14 @@ declare const configs: {
|
|
|
263
263
|
};
|
|
264
264
|
ignores: string[];
|
|
265
265
|
}[];
|
|
266
|
-
readonly "flat/typescript": typeof import(
|
|
267
|
-
readonly "flat/javascript": typeof import(
|
|
268
|
-
readonly "flat/react": typeof import(
|
|
269
|
-
readonly "flat/react-base": typeof import(
|
|
270
|
-
readonly "flat/react-typescript": typeof import(
|
|
271
|
-
readonly "flat/react-jsx": typeof import(
|
|
272
|
-
readonly "flat/angular": typeof import(
|
|
273
|
-
readonly "flat/angular-template": typeof import(
|
|
266
|
+
readonly "flat/typescript": typeof import('./flat-configs/typescript').default;
|
|
267
|
+
readonly "flat/javascript": typeof import('./flat-configs/javascript').default;
|
|
268
|
+
readonly "flat/react": typeof import('./flat-configs/react-tmp').default;
|
|
269
|
+
readonly "flat/react-base": typeof import('./flat-configs/react-base').default;
|
|
270
|
+
readonly "flat/react-typescript": typeof import('./flat-configs/react-typescript').default;
|
|
271
|
+
readonly "flat/react-jsx": typeof import('./flat-configs/react-jsx').default;
|
|
272
|
+
readonly "flat/angular": typeof import('./flat-configs/angular').default;
|
|
273
|
+
readonly "flat/angular-template": typeof import('./flat-configs/angular-template').default;
|
|
274
274
|
};
|
|
275
275
|
declare const rules: {
|
|
276
276
|
"enforce-module-boundaries": import("@typescript-eslint/utils/ts-eslint").RuleModule<import("./rules/enforce-module-boundaries").MessageIds, import("./rules/enforce-module-boundaries").Options, unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
|
|
@@ -533,7 +533,7 @@ declare const _default: {
|
|
|
533
533
|
plugins: string[];
|
|
534
534
|
extends: string[];
|
|
535
535
|
parserOptions: {
|
|
536
|
-
project:
|
|
536
|
+
project: undefined[];
|
|
537
537
|
};
|
|
538
538
|
rules: {};
|
|
539
539
|
};
|
|
@@ -548,14 +548,14 @@ declare const _default: {
|
|
|
548
548
|
};
|
|
549
549
|
ignores: string[];
|
|
550
550
|
}[];
|
|
551
|
-
readonly "flat/typescript": typeof import(
|
|
552
|
-
readonly "flat/javascript": typeof import(
|
|
553
|
-
readonly "flat/react": typeof import(
|
|
554
|
-
readonly "flat/react-base": typeof import(
|
|
555
|
-
readonly "flat/react-typescript": typeof import(
|
|
556
|
-
readonly "flat/react-jsx": typeof import(
|
|
557
|
-
readonly "flat/angular": typeof import(
|
|
558
|
-
readonly "flat/angular-template": typeof import(
|
|
551
|
+
readonly "flat/typescript": typeof import('./flat-configs/typescript').default;
|
|
552
|
+
readonly "flat/javascript": typeof import('./flat-configs/javascript').default;
|
|
553
|
+
readonly "flat/react": typeof import('./flat-configs/react-tmp').default;
|
|
554
|
+
readonly "flat/react-base": typeof import('./flat-configs/react-base').default;
|
|
555
|
+
readonly "flat/react-typescript": typeof import('./flat-configs/react-typescript').default;
|
|
556
|
+
readonly "flat/react-jsx": typeof import('./flat-configs/react-jsx').default;
|
|
557
|
+
readonly "flat/angular": typeof import('./flat-configs/angular').default;
|
|
558
|
+
readonly "flat/angular-template": typeof import('./flat-configs/angular-template').default;
|
|
559
559
|
};
|
|
560
560
|
rules: {
|
|
561
561
|
"enforce-module-boundaries": import("@typescript-eslint/utils/ts-eslint").RuleModule<import("./rules/enforce-module-boundaries").MessageIds, import("./rules/enforce-module-boundaries").Options, unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener> & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/eslint-plugin",
|
|
3
|
-
"version": "23.0.0",
|
|
3
|
+
"version": "23.1.0-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"files": [
|
|
@@ -101,11 +101,11 @@
|
|
|
101
101
|
"jsonc-eslint-parser": "^2.1.0",
|
|
102
102
|
"semver": "^7.6.3",
|
|
103
103
|
"tslib": "^2.3.0",
|
|
104
|
-
"@nx/devkit": "23.0.0",
|
|
105
|
-
"@nx/js": "23.0.0"
|
|
104
|
+
"@nx/devkit": "23.1.0-beta.0",
|
|
105
|
+
"@nx/js": "23.1.0-beta.0"
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
|
-
"nx": "23.0.0"
|
|
108
|
+
"nx": "23.1.0-beta.0"
|
|
109
109
|
},
|
|
110
110
|
"publishConfig": {
|
|
111
111
|
"access": "public"
|