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 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 `configs` block:
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
- configs: {
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";
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: { name, version },
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";
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: { name, version },
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.3",
5
- "packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f",
6
- "description": "ESLint v9+ plugin for RxJS",
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/config-helpers": "0.4.1",
80
- "@eslint/js": "^9.38.0",
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.46.2",
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.1",
89
- "eslint": "^9.38.0",
87
+ "bumpp": "^10.3.2",
88
+ "eslint": "^9.39.2",
90
89
  "eslint-config-flat-gitignore": "^2.1.0",
91
- "eslint-doc-generator": "~2.2.2",
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": "^0.18.1",
95
+ "markdownlint-cli2": "~0.19.0",
97
96
  "rxjs": "^7.8.2",
98
- "tsup": "^8.5.0",
97
+ "tsup": "8.5.0",
99
98
  "typescript": "~5.8.3",
100
- "typescript-eslint": "^8.46.2",
101
- "vite": "^6.3.5",
99
+ "typescript-eslint": "^8.51.0",
100
+ "vite": "^6.4.1",
102
101
  "vitest": "^3.2.4"
103
102
  },
104
103
  "engines": {