@simplysm/eslint-plugin 12.5.46 → 12.5.48

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/eslint-plugin",
3
- "version": "12.5.46",
3
+ "version": "12.5.48",
4
4
  "description": "심플리즘 패키지 - ESLINT 플러그인",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -12,14 +12,14 @@
12
12
  "type": "module",
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@eslint/compat": "^1.2.1",
16
- "@typescript-eslint/utils": "^8.11.0",
15
+ "@eslint/compat": "^1.2.2",
16
+ "@typescript-eslint/utils": "^8.12.2",
17
17
  "angular-eslint": "^18.4.0",
18
- "eslint": "^9.13.0",
18
+ "eslint": "^9.14.0",
19
19
  "eslint-plugin-deprecation": "^3.0.0",
20
20
  "eslint-plugin-import": "^2.31.0",
21
21
  "globals": "^15.11.0",
22
22
  "typescript": "~5.5.4",
23
- "typescript-eslint": "^8.11.0"
23
+ "typescript-eslint": "^8.12.2"
24
24
  }
25
25
  }
@@ -2,6 +2,7 @@ import globals from "globals";
2
2
  import tseslint from "typescript-eslint";
3
3
  import plugin from "../plugin.js";
4
4
  import ngeslint from "angular-eslint";
5
+ import importPlugin from "eslint-plugin-import";
5
6
 
6
7
  export default [
7
8
  {
@@ -20,7 +21,7 @@ export default [
20
21
  {
21
22
  files: ["**/*.js", "**/*.jsx"],
22
23
  plugins: {
23
- // import: importPlugin,
24
+ import: importPlugin,
24
25
  },
25
26
  rules: {
26
27
  // 기본
@@ -36,7 +37,7 @@ export default [
36
37
  "no-undef": ["error"],
37
38
 
38
39
  // import
39
- // "import/no-extraneous-dependencies": ["error"], // 느림
40
+ "import/no-extraneous-dependencies": ["error"], // 느림
40
41
  },
41
42
  },
42
43
  {
@@ -45,7 +46,7 @@ export default [
45
46
  "@typescript-eslint": tseslint.plugin,
46
47
  "@simplysm": plugin,
47
48
  "@angular-eslint": ngeslint.tsPlugin,
48
- // "import": importPlugin,
49
+ "import": importPlugin,
49
50
  // "deprecation": fixupPluginRules(deprecationPlugin),
50
51
  },
51
52
  processor: ngeslint.processInlineTemplates,
@@ -85,7 +86,7 @@ export default [
85
86
  "@typescript-eslint/prefer-ts-expect-error": ["error"],
86
87
 
87
88
  // import
88
- // "import/no-extraneous-dependencies": ["error"], // 느림
89
+ "import/no-extraneous-dependencies": ["error"], // 느림
89
90
 
90
91
  // Deprecation
91
92
  // "deprecation/deprecation": ["warn"], // 느림