@commencis/eslint-plugin 1.4.4 → 1.5.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/CHANGELOG.md +12 -0
- package/dist/index.cjs +46 -46
- package/dist/index.js +46 -46
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @commencis/eslint-plugin
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat: update consistent type imports ([#370](https://github.com/Commencis/js-toolkit/pull/370))
|
|
8
|
+
|
|
9
|
+
## 1.4.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- chore(deps): update typescript-eslint monorepo to v8.40.0 ([#352](https://github.com/Commencis/js-toolkit/pull/352))
|
|
14
|
+
|
|
3
15
|
## 1.4.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -24,6 +24,52 @@ __export(index_exports, {
|
|
|
24
24
|
});
|
|
25
25
|
module.exports = __toCommonJS(index_exports);
|
|
26
26
|
|
|
27
|
+
// package.json
|
|
28
|
+
var package_default = {
|
|
29
|
+
name: "@commencis/eslint-plugin",
|
|
30
|
+
version: "1.5.0",
|
|
31
|
+
description: "Commencis ESLint plugin",
|
|
32
|
+
author: "Commencis WEB Team",
|
|
33
|
+
license: "Apache-2.0",
|
|
34
|
+
type: "module",
|
|
35
|
+
homepage: "https://github.com/Commencis/js-toolkit/tree/main/packages/eslint-plugin#readme",
|
|
36
|
+
bugs: {
|
|
37
|
+
url: "https://github.com/Commencis/js-toolkit/issues"
|
|
38
|
+
},
|
|
39
|
+
repository: {
|
|
40
|
+
type: "git",
|
|
41
|
+
url: "git+https://github.com/Commencis/js-toolkit.git",
|
|
42
|
+
directory: "packages/eslint-plugin"
|
|
43
|
+
},
|
|
44
|
+
publishConfig: {
|
|
45
|
+
access: "public"
|
|
46
|
+
},
|
|
47
|
+
main: "dist/index.js",
|
|
48
|
+
files: [
|
|
49
|
+
"dist",
|
|
50
|
+
"*.md",
|
|
51
|
+
"LICENSE"
|
|
52
|
+
],
|
|
53
|
+
exports: {
|
|
54
|
+
types: "./dist/index.d.ts",
|
|
55
|
+
import: "./dist/index.js",
|
|
56
|
+
require: "./dist/index.cjs"
|
|
57
|
+
},
|
|
58
|
+
scripts: {
|
|
59
|
+
dev: "tsup --watch",
|
|
60
|
+
build: "tsup",
|
|
61
|
+
"lint:types": "tsc --noEmit"
|
|
62
|
+
},
|
|
63
|
+
dependencies: {
|
|
64
|
+
"@typescript-eslint/utils": "8.40.0"
|
|
65
|
+
},
|
|
66
|
+
devDependencies: {
|
|
67
|
+
"@commencis/ts-config": "0.0.2",
|
|
68
|
+
tsup: "8.5.0",
|
|
69
|
+
typescript: "5.9.2"
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
|
|
27
73
|
// src/configs/all.ts
|
|
28
74
|
var all = {
|
|
29
75
|
"@commencis/copyright-text": "error"
|
|
@@ -146,52 +192,6 @@ var rules_default = {
|
|
|
146
192
|
"copyright-text": copyright_text_default
|
|
147
193
|
};
|
|
148
194
|
|
|
149
|
-
// package.json
|
|
150
|
-
var package_default = {
|
|
151
|
-
name: "@commencis/eslint-plugin",
|
|
152
|
-
version: "1.4.4",
|
|
153
|
-
description: "Commencis ESLint plugin",
|
|
154
|
-
author: "Commencis WEB Team",
|
|
155
|
-
license: "Apache-2.0",
|
|
156
|
-
type: "module",
|
|
157
|
-
homepage: "https://github.com/Commencis/js-toolkit/tree/main/packages/eslint-plugin#readme",
|
|
158
|
-
bugs: {
|
|
159
|
-
url: "https://github.com/Commencis/js-toolkit/issues"
|
|
160
|
-
},
|
|
161
|
-
repository: {
|
|
162
|
-
type: "git",
|
|
163
|
-
url: "git+https://github.com/Commencis/js-toolkit.git",
|
|
164
|
-
directory: "packages/eslint-plugin"
|
|
165
|
-
},
|
|
166
|
-
publishConfig: {
|
|
167
|
-
access: "public"
|
|
168
|
-
},
|
|
169
|
-
main: "dist/index.js",
|
|
170
|
-
files: [
|
|
171
|
-
"dist",
|
|
172
|
-
"*.md",
|
|
173
|
-
"LICENSE"
|
|
174
|
-
],
|
|
175
|
-
exports: {
|
|
176
|
-
types: "./dist/index.d.ts",
|
|
177
|
-
import: "./dist/index.js",
|
|
178
|
-
require: "./dist/index.cjs"
|
|
179
|
-
},
|
|
180
|
-
scripts: {
|
|
181
|
-
dev: "tsup --watch",
|
|
182
|
-
build: "tsup",
|
|
183
|
-
"lint:types": "tsc --noEmit"
|
|
184
|
-
},
|
|
185
|
-
dependencies: {
|
|
186
|
-
"@typescript-eslint/utils": "8.38.0"
|
|
187
|
-
},
|
|
188
|
-
devDependencies: {
|
|
189
|
-
"@commencis/ts-config": "0.0.2",
|
|
190
|
-
tsup: "8.5.0",
|
|
191
|
-
typescript: "5.8.3"
|
|
192
|
-
}
|
|
193
|
-
};
|
|
194
|
-
|
|
195
195
|
// src/index.ts
|
|
196
196
|
var plugin = {
|
|
197
197
|
meta: {
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
// package.json
|
|
2
|
+
var package_default = {
|
|
3
|
+
name: "@commencis/eslint-plugin",
|
|
4
|
+
version: "1.5.0",
|
|
5
|
+
description: "Commencis ESLint plugin",
|
|
6
|
+
author: "Commencis WEB Team",
|
|
7
|
+
license: "Apache-2.0",
|
|
8
|
+
type: "module",
|
|
9
|
+
homepage: "https://github.com/Commencis/js-toolkit/tree/main/packages/eslint-plugin#readme",
|
|
10
|
+
bugs: {
|
|
11
|
+
url: "https://github.com/Commencis/js-toolkit/issues"
|
|
12
|
+
},
|
|
13
|
+
repository: {
|
|
14
|
+
type: "git",
|
|
15
|
+
url: "git+https://github.com/Commencis/js-toolkit.git",
|
|
16
|
+
directory: "packages/eslint-plugin"
|
|
17
|
+
},
|
|
18
|
+
publishConfig: {
|
|
19
|
+
access: "public"
|
|
20
|
+
},
|
|
21
|
+
main: "dist/index.js",
|
|
22
|
+
files: [
|
|
23
|
+
"dist",
|
|
24
|
+
"*.md",
|
|
25
|
+
"LICENSE"
|
|
26
|
+
],
|
|
27
|
+
exports: {
|
|
28
|
+
types: "./dist/index.d.ts",
|
|
29
|
+
import: "./dist/index.js",
|
|
30
|
+
require: "./dist/index.cjs"
|
|
31
|
+
},
|
|
32
|
+
scripts: {
|
|
33
|
+
dev: "tsup --watch",
|
|
34
|
+
build: "tsup",
|
|
35
|
+
"lint:types": "tsc --noEmit"
|
|
36
|
+
},
|
|
37
|
+
dependencies: {
|
|
38
|
+
"@typescript-eslint/utils": "8.40.0"
|
|
39
|
+
},
|
|
40
|
+
devDependencies: {
|
|
41
|
+
"@commencis/ts-config": "0.0.2",
|
|
42
|
+
tsup: "8.5.0",
|
|
43
|
+
typescript: "5.9.2"
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
|
|
1
47
|
// src/configs/all.ts
|
|
2
48
|
var all = {
|
|
3
49
|
"@commencis/copyright-text": "error"
|
|
@@ -120,52 +166,6 @@ var rules_default = {
|
|
|
120
166
|
"copyright-text": copyright_text_default
|
|
121
167
|
};
|
|
122
168
|
|
|
123
|
-
// package.json
|
|
124
|
-
var package_default = {
|
|
125
|
-
name: "@commencis/eslint-plugin",
|
|
126
|
-
version: "1.4.4",
|
|
127
|
-
description: "Commencis ESLint plugin",
|
|
128
|
-
author: "Commencis WEB Team",
|
|
129
|
-
license: "Apache-2.0",
|
|
130
|
-
type: "module",
|
|
131
|
-
homepage: "https://github.com/Commencis/js-toolkit/tree/main/packages/eslint-plugin#readme",
|
|
132
|
-
bugs: {
|
|
133
|
-
url: "https://github.com/Commencis/js-toolkit/issues"
|
|
134
|
-
},
|
|
135
|
-
repository: {
|
|
136
|
-
type: "git",
|
|
137
|
-
url: "git+https://github.com/Commencis/js-toolkit.git",
|
|
138
|
-
directory: "packages/eslint-plugin"
|
|
139
|
-
},
|
|
140
|
-
publishConfig: {
|
|
141
|
-
access: "public"
|
|
142
|
-
},
|
|
143
|
-
main: "dist/index.js",
|
|
144
|
-
files: [
|
|
145
|
-
"dist",
|
|
146
|
-
"*.md",
|
|
147
|
-
"LICENSE"
|
|
148
|
-
],
|
|
149
|
-
exports: {
|
|
150
|
-
types: "./dist/index.d.ts",
|
|
151
|
-
import: "./dist/index.js",
|
|
152
|
-
require: "./dist/index.cjs"
|
|
153
|
-
},
|
|
154
|
-
scripts: {
|
|
155
|
-
dev: "tsup --watch",
|
|
156
|
-
build: "tsup",
|
|
157
|
-
"lint:types": "tsc --noEmit"
|
|
158
|
-
},
|
|
159
|
-
dependencies: {
|
|
160
|
-
"@typescript-eslint/utils": "8.38.0"
|
|
161
|
-
},
|
|
162
|
-
devDependencies: {
|
|
163
|
-
"@commencis/ts-config": "0.0.2",
|
|
164
|
-
tsup: "8.5.0",
|
|
165
|
-
typescript: "5.8.3"
|
|
166
|
-
}
|
|
167
|
-
};
|
|
168
|
-
|
|
169
169
|
// src/index.ts
|
|
170
170
|
var plugin = {
|
|
171
171
|
meta: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commencis/eslint-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Commencis ESLint plugin",
|
|
5
5
|
"author": "Commencis WEB Team",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"require": "./dist/index.cjs"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@typescript-eslint/utils": "8.
|
|
32
|
+
"@typescript-eslint/utils": "8.40.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@commencis/ts-config": "0.0.2",
|
|
36
36
|
"tsup": "8.5.0",
|
|
37
|
-
"typescript": "5.
|
|
37
|
+
"typescript": "5.9.2"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
40
|
"dev": "tsup --watch",
|