eslint-plugin-rxjs-x 0.6.2 → 0.7.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/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.6.2";
3
+ var version = "0.7.0";
4
4
 
5
5
  // src/configs/recommended.ts
6
6
  var createRecommendedConfig = (plugin2) => ({
@@ -94,8 +94,9 @@ function createRegExpForWords(config) {
94
94
  function escapeRegExp(text) {
95
95
  return text.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&");
96
96
  }
97
+ var REPO_URL = "https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x";
97
98
  var ruleCreator = _utils.ESLintUtils.RuleCreator(
98
- (name2) => `https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/docs/rules/${name2}.md`
99
+ (name2) => `${REPO_URL}/blob/v${version}/docs/rules/${name2}.md`
99
100
  );
100
101
 
101
102
  // src/rules/ban-observables.ts
@@ -4041,9 +4042,9 @@ var rxjsX = {
4041
4042
  strict: createStrictConfig(plugin)
4042
4043
  }
4043
4044
  };
4044
- var src_default = rxjsX;
4045
+ var index_default = rxjsX;
4045
4046
 
4046
4047
 
4047
- exports.default = src_default;
4048
+ exports.default = index_default;
4048
4049
 
4049
4050
  module.exports = exports.default;
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.6.2";
3
+ var version = "0.7.0";
4
4
 
5
5
  // src/configs/recommended.ts
6
6
  var createRecommendedConfig = (plugin2) => ({
@@ -94,8 +94,9 @@ function createRegExpForWords(config) {
94
94
  function escapeRegExp(text) {
95
95
  return text.replace(/[-/\\^$*+?.()|[\]{}]/g, "\\$&");
96
96
  }
97
+ var REPO_URL = "https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x";
97
98
  var ruleCreator = ESLintUtils.RuleCreator(
98
- (name2) => `https://github.com/JasonWeinzierl/eslint-plugin-rxjs-x/blob/main/docs/rules/${name2}.md`
99
+ (name2) => `${REPO_URL}/blob/v${version}/docs/rules/${name2}.md`
99
100
  );
100
101
 
101
102
  // src/rules/ban-observables.ts
@@ -4041,7 +4042,7 @@ var rxjsX = {
4041
4042
  strict: createStrictConfig(plugin)
4042
4043
  }
4043
4044
  };
4044
- var src_default = rxjsX;
4045
+ var index_default = rxjsX;
4045
4046
  export {
4046
- src_default as default
4047
+ index_default as default
4047
4048
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-plugin-rxjs-x",
3
3
  "type": "commonjs",
4
- "version": "0.6.2",
4
+ "version": "0.7.0",
5
5
  "packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
6
6
  "description": "ESLint v9+ plugin for RxJS",
7
7
  "author": "Jason Weinzierl <weinzierljason@gmail.com>",
@@ -55,11 +55,11 @@
55
55
  "typecheck": "tsc --noEmit"
56
56
  },
57
57
  "dependencies": {
58
- "@typescript-eslint/scope-manager": "^8.1.0",
59
- "@typescript-eslint/utils": "^8.1.0",
58
+ "@typescript-eslint/scope-manager": "^8.19.1",
59
+ "@typescript-eslint/utils": "^8.19.1",
60
60
  "common-tags": "^1.8.0",
61
61
  "decamelize": "^5.0.1",
62
- "ts-api-utils": "^1.3.0",
62
+ "ts-api-utils": "^2.0.0",
63
63
  "tslib": "^2.1.0"
64
64
  },
65
65
  "peerDependencies": {
@@ -73,28 +73,28 @@
73
73
  }
74
74
  },
75
75
  "devDependencies": {
76
- "@eslint/js": "^9.17.0",
77
- "@stylistic/eslint-plugin": "^2.12.1",
76
+ "@eslint/js": "^9.22.0",
77
+ "@stylistic/eslint-plugin": "^4.2.0",
78
78
  "@types/common-tags": "^1.8.4",
79
79
  "@types/node": "~18.18.0",
80
- "@typescript-eslint/rule-tester": "^8.19.1",
81
- "@typescript/vfs": "^1.6.0",
82
- "@vitest/coverage-v8": "^2.1.8",
83
- "@vitest/eslint-plugin": "^1.1.24",
84
- "bumpp": "^9.9.3",
85
- "eslint": "^9.17.0",
86
- "eslint-config-flat-gitignore": "^0.3.0",
87
- "eslint-doc-generator": "^2.0.2",
88
- "eslint-import-resolver-typescript": "^3.7.0",
80
+ "@typescript-eslint/rule-tester": "^8.26.1",
81
+ "@typescript/vfs": "^1.6.1",
82
+ "@vitest/coverage-v8": "^3.0.8",
83
+ "@vitest/eslint-plugin": "^1.1.37",
84
+ "bumpp": "^10.1.0",
85
+ "eslint": "^9.22.0",
86
+ "eslint-config-flat-gitignore": "^2.1.0",
87
+ "eslint-doc-generator": "^2.1.1",
88
+ "eslint-import-resolver-typescript": "^3.8.5",
89
89
  "eslint-plugin-eslint-plugin": "^6.4.0",
90
90
  "eslint-plugin-import-x": "^4.6.1",
91
- "eslint-plugin-n": "^17.15.1",
92
- "markdownlint-cli2": "^0.17.1",
93
- "rxjs": "^7.8.1",
94
- "tsup": "^8.3.5",
95
- "typescript": "~5.7.2",
96
- "typescript-eslint": "^8.19.1",
97
- "vitest": "^2.1.8"
91
+ "eslint-plugin-n": "^17.16.2",
92
+ "markdownlint-cli2": "^0.17.2",
93
+ "rxjs": "^7.8.2",
94
+ "tsup": "^8.4.0",
95
+ "typescript": "~5.7.3",
96
+ "typescript-eslint": "^8.26.1",
97
+ "vitest": "^3.0.8"
98
98
  },
99
99
  "engines": {
100
100
  "node": "^18.18.0 || ^20.9.0 || >= 21.1.0"