eslint-plugin-rxjs-x 0.8.3 → 0.8.4
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 +3 -3
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -2
- package/dist/index.mjs +6 -2
- package/package.json +13 -14
package/README.md
CHANGED
|
@@ -21,12 +21,12 @@ but has since introduced new features which involve breaking changes.
|
|
|
21
21
|
+ import rxjsX from 'eslint-plugin-rxjs-x';
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
3. If you previously used the `plugin:rxjs/recommended` shared config, add `rxjsX.configs.recommended` to your `
|
|
24
|
+
3. If you previously used the `plugin:rxjs/recommended` shared config, add `rxjsX.configs.recommended` to your `extends` block:
|
|
25
25
|
|
|
26
26
|
```diff
|
|
27
|
-
|
|
27
|
+
extends: [
|
|
28
28
|
+ rxjsX.configs.recommended,
|
|
29
|
-
|
|
29
|
+
],
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
- Note: `eslint-plugin-rxjs-x` provides a `strict` shared config, so consider using `rxjsX.configs.strict` instead.
|
package/dist/index.d.mts
CHANGED
|
@@ -352,6 +352,7 @@ declare const rxjsX: {
|
|
|
352
352
|
meta: {
|
|
353
353
|
name: string;
|
|
354
354
|
version: string;
|
|
355
|
+
namespace: string;
|
|
355
356
|
};
|
|
356
357
|
/** Compatibility with `defineConfig` until https://github.com/typescript-eslint/typescript-eslint/issues/11543 is addressed. */
|
|
357
358
|
rules: { [K in keyof typeof allRules]: (typeof allRules)[K] & Rule.RuleModule; };
|
package/dist/index.d.ts
CHANGED
|
@@ -352,6 +352,7 @@ declare const rxjsX: {
|
|
|
352
352
|
meta: {
|
|
353
353
|
name: string;
|
|
354
354
|
version: string;
|
|
355
|
+
namespace: string;
|
|
355
356
|
};
|
|
356
357
|
/** Compatibility with `defineConfig` until https://github.com/typescript-eslint/typescript-eslint/issues/11543 is addressed. */
|
|
357
358
|
rules: { [K in keyof typeof allRules]: (typeof allRules)[K] & Rule.RuleModule; };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }// package.json
|
|
2
2
|
var name = "eslint-plugin-rxjs-x";
|
|
3
|
-
var version = "0.8.
|
|
3
|
+
var version = "0.8.4";
|
|
4
4
|
|
|
5
5
|
// src/configs/recommended.ts
|
|
6
6
|
var createRecommendedConfig = (plugin2) => ({
|
|
@@ -4351,7 +4351,11 @@ var allRules = {
|
|
|
4351
4351
|
"throw-error": throwErrorRule
|
|
4352
4352
|
};
|
|
4353
4353
|
var plugin = {
|
|
4354
|
-
meta: {
|
|
4354
|
+
meta: {
|
|
4355
|
+
name,
|
|
4356
|
+
version,
|
|
4357
|
+
namespace: "rxjs-x"
|
|
4358
|
+
},
|
|
4355
4359
|
/** Compatibility with `defineConfig` until https://github.com/typescript-eslint/typescript-eslint/issues/11543 is addressed. */
|
|
4356
4360
|
rules: allRules
|
|
4357
4361
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// package.json
|
|
2
2
|
var name = "eslint-plugin-rxjs-x";
|
|
3
|
-
var version = "0.8.
|
|
3
|
+
var version = "0.8.4";
|
|
4
4
|
|
|
5
5
|
// src/configs/recommended.ts
|
|
6
6
|
var createRecommendedConfig = (plugin2) => ({
|
|
@@ -4351,7 +4351,11 @@ var allRules = {
|
|
|
4351
4351
|
"throw-error": throwErrorRule
|
|
4352
4352
|
};
|
|
4353
4353
|
var plugin = {
|
|
4354
|
-
meta: {
|
|
4354
|
+
meta: {
|
|
4355
|
+
name,
|
|
4356
|
+
version,
|
|
4357
|
+
namespace: "rxjs-x"
|
|
4358
|
+
},
|
|
4355
4359
|
/** Compatibility with `defineConfig` until https://github.com/typescript-eslint/typescript-eslint/issues/11543 is addressed. */
|
|
4356
4360
|
rules: allRules
|
|
4357
4361
|
};
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-rxjs-x",
|
|
3
3
|
"type": "commonjs",
|
|
4
|
-
"version": "0.8.
|
|
5
|
-
"packageManager": "yarn@4.
|
|
6
|
-
"description": "ESLint
|
|
4
|
+
"version": "0.8.4",
|
|
5
|
+
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8",
|
|
6
|
+
"description": "Modern ESLint plugin for RxJS",
|
|
7
7
|
"author": "Jason Weinzierl <weinzierljason@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"homepage": "https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x",
|
|
@@ -76,29 +76,28 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@eslint/
|
|
80
|
-
"@eslint
|
|
81
|
-
"@stylistic/eslint-plugin": "^5.5.0",
|
|
79
|
+
"@eslint/js": "^9.39.2",
|
|
80
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
82
81
|
"@types/common-tags": "^1.8.4",
|
|
83
82
|
"@types/node": "~18.18.0",
|
|
84
|
-
"@typescript-eslint/rule-tester": "^8.
|
|
83
|
+
"@typescript-eslint/rule-tester": "^8.51.0",
|
|
85
84
|
"@typescript/vfs": "^1.6.2",
|
|
86
85
|
"@vitest/coverage-v8": "^3.2.4",
|
|
87
86
|
"@vitest/eslint-plugin": "^1.4.0",
|
|
88
|
-
"bumpp": "^10.3.
|
|
89
|
-
"eslint": "^9.
|
|
87
|
+
"bumpp": "^10.3.2",
|
|
88
|
+
"eslint": "^9.39.2",
|
|
90
89
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
91
|
-
"eslint-doc-generator": "
|
|
90
|
+
"eslint-doc-generator": "^2.4.0",
|
|
92
91
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
93
92
|
"eslint-plugin-eslint-plugin": "^7.2.0",
|
|
94
93
|
"eslint-plugin-import-x": "^4.16.1",
|
|
95
94
|
"eslint-plugin-n": "^17.23.1",
|
|
96
|
-
"markdownlint-cli2": "
|
|
95
|
+
"markdownlint-cli2": "~0.19.0",
|
|
97
96
|
"rxjs": "^7.8.2",
|
|
98
|
-
"tsup": "
|
|
97
|
+
"tsup": "8.5.0",
|
|
99
98
|
"typescript": "~5.8.3",
|
|
100
|
-
"typescript-eslint": "^8.
|
|
101
|
-
"vite": "^6.
|
|
99
|
+
"typescript-eslint": "^8.51.0",
|
|
100
|
+
"vite": "^6.4.1",
|
|
102
101
|
"vitest": "^3.2.4"
|
|
103
102
|
},
|
|
104
103
|
"engines": {
|