@yamato-daiwa/style_guides 0.3.0-alpha.7 → 0.3.0-alpha.8

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/ECMAScript.js CHANGED
@@ -1,6 +1,7 @@
1
1
  /* ─── Plugins ────────────────────────────────────────────────────────────────────────────────────────────────────── */
2
2
  const stylisticPlugin = require("@stylistic/eslint-plugin");
3
3
  const nodePlugin = require("eslint-plugin-n");
4
+ const importPlugin = require("eslint-plugin-import");
4
5
  const vuePlugin = require("eslint-plugin-vue");
5
6
  const reactPlugin = require("eslint-plugin-react");
6
7
  const typeScriptPlugin = require("@typescript-eslint/eslint-plugin");
@@ -38,7 +39,8 @@ module.exports = [
38
39
 
39
40
  plugins: {
40
41
  "@stylistic": stylisticPlugin,
41
- n: nodePlugin
42
+ n: nodePlugin,
43
+ import: importPlugin
42
44
  },
43
45
 
44
46
  rules: {
@@ -229,10 +229,8 @@ module.exports = {
229
229
  }
230
230
  ],
231
231
 
232
- /*
233
232
  "no-duplicate-imports": "off",
234
233
  "import/no-duplicates": "error",
235
- */
236
234
 
237
235
  "no-empty-function": "off",
238
236
  "@typescript-eslint/no-empty-function": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/style_guides",
3
- "version": "0.3.0-alpha.7",
3
+ "version": "0.3.0-alpha.8",
4
4
  "description": "The guidelines for ESLint, Pug and Stylus.",
5
5
  "engines": {
6
6
  "node": ">=18.18.0"
@@ -20,9 +20,10 @@
20
20
  "license": "MIT",
21
21
  "peerDependencies": {
22
22
  "@stylistic/eslint-plugin": "~2.8.0",
23
- "@typescript-eslint/eslint-plugin": "~8.7.0",
24
- "@typescript-eslint/parser": "~8.7.0",
25
- "eslint": "~9.11.0",
23
+ "@typescript-eslint/eslint-plugin": "~8.8.0",
24
+ "@typescript-eslint/parser": "~8.8.0",
25
+ "eslint": "~9.12.0",
26
+ "eslint-plugin-import": "2.31.0",
26
27
  "eslint-plugin-n": "~17.10.0",
27
28
  "eslint-plugin-react": "~7.37.0",
28
29
  "eslint-plugin-vue": "~9.28.0",
@@ -31,11 +32,12 @@
31
32
  },
32
33
  "devDependencies": {
33
34
  "@stylistic/eslint-plugin": "2.8.0",
34
- "@typescript-eslint/eslint-plugin": "8.7.0",
35
- "@typescript-eslint/parser": "8.7.0",
36
- "eslint": "9.11.1",
35
+ "@typescript-eslint/eslint-plugin": "8.8.0",
36
+ "@typescript-eslint/parser": "8.8.0",
37
+ "eslint": "9.12.0",
38
+ "eslint-plugin-import": "2.31.0",
37
39
  "eslint-plugin-n": "17.10.3",
38
- "eslint-plugin-react": "7.37.0",
40
+ "eslint-plugin-react": "7.37.1",
39
41
  "eslint-plugin-vue": "9.28.0",
40
42
  "eslint-plugin-vue-pug": "0.6.2",
41
43
  "typescript": "5.5.4",