@alextheman/eslint-plugin 1.0.3 → 1.0.5
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.cjs +12 -11
- package/dist/index.d.cts +9 -11
- package/dist/index.d.ts +9 -11
- package/dist/index.js +7 -11
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -20,13 +20,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var index_exports = {};
|
|
22
22
|
__export(index_exports, {
|
|
23
|
-
|
|
23
|
+
meta: () => meta,
|
|
24
|
+
rules: () => rules_default
|
|
24
25
|
});
|
|
25
26
|
module.exports = __toCommonJS(index_exports);
|
|
26
27
|
|
|
27
28
|
// package.json
|
|
28
29
|
var name = "@alextheman/eslint-plugin";
|
|
29
|
-
var version = "1.0.
|
|
30
|
+
var version = "1.0.5";
|
|
30
31
|
|
|
31
32
|
// src/createRule.ts
|
|
32
33
|
var import_utils = require("@typescript-eslint/utils");
|
|
@@ -73,13 +74,13 @@ var rules_default = {
|
|
|
73
74
|
};
|
|
74
75
|
|
|
75
76
|
// src/index.ts
|
|
76
|
-
var
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
namespace: "alextheman"
|
|
81
|
-
},
|
|
82
|
-
configs: {},
|
|
83
|
-
rules: rules_default
|
|
77
|
+
var meta = {
|
|
78
|
+
name,
|
|
79
|
+
version,
|
|
80
|
+
namespace: "alextheman"
|
|
84
81
|
};
|
|
85
|
-
|
|
82
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
83
|
+
0 && (module.exports = {
|
|
84
|
+
meta,
|
|
85
|
+
rules
|
|
86
|
+
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
name: string;
|
|
6
|
-
version: string;
|
|
7
|
-
namespace: string;
|
|
8
|
-
};
|
|
9
|
-
configs: {};
|
|
10
|
-
rules: {
|
|
11
|
-
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
12
|
-
};
|
|
3
|
+
declare const _default: {
|
|
4
|
+
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
13
5
|
};
|
|
14
6
|
|
|
15
|
-
|
|
7
|
+
declare const meta: {
|
|
8
|
+
name: string;
|
|
9
|
+
version: string;
|
|
10
|
+
namespace: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { meta, _default as rules };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import * as _typescript_eslint_utils_ts_eslint from '@typescript-eslint/utils/ts-eslint';
|
|
2
2
|
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
name: string;
|
|
6
|
-
version: string;
|
|
7
|
-
namespace: string;
|
|
8
|
-
};
|
|
9
|
-
configs: {};
|
|
10
|
-
rules: {
|
|
11
|
-
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
12
|
-
};
|
|
3
|
+
declare const _default: {
|
|
4
|
+
"no-namespace-imports": _typescript_eslint_utils_ts_eslint.RuleModule<"message", [], unknown, _typescript_eslint_utils_ts_eslint.RuleListener>;
|
|
13
5
|
};
|
|
14
6
|
|
|
15
|
-
|
|
7
|
+
declare const meta: {
|
|
8
|
+
name: string;
|
|
9
|
+
version: string;
|
|
10
|
+
namespace: string;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { meta, _default as rules };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// package.json
|
|
2
2
|
var name = "@alextheman/eslint-plugin";
|
|
3
|
-
var version = "1.0.
|
|
3
|
+
var version = "1.0.5";
|
|
4
4
|
|
|
5
5
|
// src/createRule.ts
|
|
6
6
|
import { ESLintUtils } from "@typescript-eslint/utils";
|
|
@@ -47,16 +47,12 @@ var rules_default = {
|
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
// src/index.ts
|
|
50
|
-
var
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
namespace: "alextheman"
|
|
55
|
-
},
|
|
56
|
-
configs: {},
|
|
57
|
-
rules: rules_default
|
|
50
|
+
var meta = {
|
|
51
|
+
name,
|
|
52
|
+
version,
|
|
53
|
+
namespace: "alextheman"
|
|
58
54
|
};
|
|
59
|
-
var index_default = plugin;
|
|
60
55
|
export {
|
|
61
|
-
|
|
56
|
+
meta,
|
|
57
|
+
rules_default as rules
|
|
62
58
|
};
|