@simplysm/eslint-plugin 12.10.30 → 12.10.32
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/package.json +1 -1
- package/src/configs/root.js +16 -9
package/package.json
CHANGED
package/src/configs/root.js
CHANGED
|
@@ -49,7 +49,18 @@ export default [
|
|
|
49
49
|
"no-undef": ["error"],
|
|
50
50
|
|
|
51
51
|
// import
|
|
52
|
-
"import/no-extraneous-dependencies": [
|
|
52
|
+
"import/no-extraneous-dependencies": [
|
|
53
|
+
"error",
|
|
54
|
+
{
|
|
55
|
+
"devDependencies": [
|
|
56
|
+
"**/*.spec.js",
|
|
57
|
+
"**/lib/**",
|
|
58
|
+
"**/eslint.config.js",
|
|
59
|
+
"**/simplysm.js",
|
|
60
|
+
"**/vitest.config.js",
|
|
61
|
+
],
|
|
62
|
+
},
|
|
63
|
+
],
|
|
53
64
|
},
|
|
54
65
|
},
|
|
55
66
|
{
|
|
@@ -189,19 +200,15 @@ export default [
|
|
|
189
200
|
|
|
190
201
|
|
|
191
202
|
// -- 아래 적용 검토가 필요한것
|
|
192
|
-
|
|
203
|
+
"import/no-extraneous-dependencies": [
|
|
193
204
|
"error",
|
|
194
205
|
{
|
|
195
206
|
"devDependencies": [
|
|
196
|
-
"
|
|
197
|
-
"**!/lib/!**",
|
|
198
|
-
"**!/eslint.config.js",
|
|
199
|
-
"**!/simplysm.js",
|
|
200
|
-
"**!/vitest.config.js",
|
|
207
|
+
"**/*.spec.ts",
|
|
201
208
|
],
|
|
202
209
|
},
|
|
203
210
|
],
|
|
204
|
-
"@simplysm/ts-no-exported-types": [
|
|
211
|
+
/*"@simplysm/ts-no-exported-types": [
|
|
205
212
|
"error", {
|
|
206
213
|
types: [
|
|
207
214
|
{
|
|
@@ -265,4 +272,4 @@ export default [
|
|
|
265
272
|
// "@angular-eslint/template/use-track-by-function": "error",
|
|
266
273
|
},
|
|
267
274
|
},
|
|
268
|
-
];
|
|
275
|
+
];
|