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 +5 -4
- package/dist/index.mjs +5 -4
- package/package.json +22 -22
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.
|
|
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) =>
|
|
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
|
|
4045
|
+
var index_default = rxjsX;
|
|
4045
4046
|
|
|
4046
4047
|
|
|
4047
|
-
exports.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.
|
|
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) =>
|
|
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
|
|
4045
|
+
var index_default = rxjsX;
|
|
4045
4046
|
export {
|
|
4046
|
-
|
|
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.
|
|
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
|
|
59
|
-
"@typescript-eslint/utils": "^8.1
|
|
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": "^
|
|
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.
|
|
77
|
-
"@stylistic/eslint-plugin": "^2.
|
|
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.
|
|
81
|
-
"@typescript/vfs": "^1.6.
|
|
82
|
-
"@vitest/coverage-v8": "^
|
|
83
|
-
"@vitest/eslint-plugin": "^1.1.
|
|
84
|
-
"bumpp": "^
|
|
85
|
-
"eslint": "^9.
|
|
86
|
-
"eslint-config-flat-gitignore": "^
|
|
87
|
-
"eslint-doc-generator": "^2.
|
|
88
|
-
"eslint-import-resolver-typescript": "^3.
|
|
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.
|
|
92
|
-
"markdownlint-cli2": "^0.17.
|
|
93
|
-
"rxjs": "^7.8.
|
|
94
|
-
"tsup": "^8.
|
|
95
|
-
"typescript": "~5.7.
|
|
96
|
-
"typescript-eslint": "^8.
|
|
97
|
-
"vitest": "^
|
|
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"
|