@slashnephy/eslint-config 3.0.1 → 3.0.3

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": "@slashnephy/eslint-config",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "keywords": [
5
5
  "eslint",
6
6
  "eslintconfig"
@@ -31,10 +31,10 @@
31
31
  "@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
32
32
  "@eslint/js": "9.23.0",
33
33
  "@graphql-eslint/eslint-plugin": "4.3.0",
34
- "@next/eslint-plugin-next": "15.2.3",
34
+ "@next/eslint-plugin-next": "15.2.4",
35
35
  "@stylistic/eslint-plugin": "4.2.0",
36
36
  "@susisu/eslint-plugin-safe-typescript": "0.9.3",
37
- "@typescript-eslint/utils": "8.27.0",
37
+ "@typescript-eslint/utils": "8.28.0",
38
38
  "@vitest/eslint-plugin": "1.1.38",
39
39
  "eslint-config-flat-gitignore": "2.1.0",
40
40
  "eslint-import-resolver-node": "0.3.9",
@@ -59,7 +59,7 @@
59
59
  "graphql": "16.10.0",
60
60
  "jsonc-eslint-parser": "2.4.0",
61
61
  "typescript": "5.8.2",
62
- "typescript-eslint": "8.27.0",
62
+ "typescript-eslint": "8.28.0",
63
63
  "yaml-eslint-parser": "1.3.0"
64
64
  },
65
65
  "devDependencies": {
package/src/base/yaml.js CHANGED
@@ -5,7 +5,6 @@ export const yaml = config({
5
5
  files: ['**/*.{yml,yaml}'],
6
6
  extends: [
7
7
  ymlPlugin.configs['flat/standard'],
8
- ymlPlugin.configs['flat/prettier'],
9
8
  ],
10
9
  rules: {
11
10
  'yml/quotes': ['error', { prefer: 'double' }],
package/src/base/yaml.ts CHANGED
@@ -7,7 +7,6 @@ export const yaml = config(
7
7
  files: ['**/*.{yml,yaml}'],
8
8
  extends: [
9
9
  ymlPlugin.configs['flat/standard'],
10
- ymlPlugin.configs['flat/prettier'],
11
10
  ],
12
11
  rules: {
13
12
  'yml/quotes': ['error', { prefer: 'double' }],
@@ -13,6 +13,7 @@ export const node = config({
13
13
  'import-x/no-default-export': 'off',
14
14
  'import-x/no-anonymous-default-export': 'off',
15
15
  // import で devDependencies を許可
16
+ 'n/no-unpublished-import': 'off',
16
17
  'import-x/no-extraneous-dependencies': [
17
18
  'error',
18
19
  {
@@ -27,7 +28,6 @@ export const node = config({
27
28
  // 不正確な import チェックを無効化
28
29
  'n/no-missing-import': 'off',
29
30
  'n/no-extraneous-import': 'off',
30
- 'n/no-unpublished-import': 'off',
31
31
  },
32
32
  }, {
33
33
  // CommonJS
@@ -15,6 +15,7 @@ export const node = config(
15
15
  'import-x/no-default-export': 'off',
16
16
  'import-x/no-anonymous-default-export': 'off',
17
17
  // import で devDependencies を許可
18
+ 'n/no-unpublished-import': 'off',
18
19
  'import-x/no-extraneous-dependencies': [
19
20
  'error',
20
21
  {
@@ -29,7 +30,6 @@ export const node = config(
29
30
  // 不正確な import チェックを無効化
30
31
  'n/no-missing-import': 'off',
31
32
  'n/no-extraneous-import': 'off',
32
- 'n/no-unpublished-import': 'off',
33
33
  },
34
34
  },
35
35
  {