@ntnyq/eslint-config 2.0.0-beta.14 → 2.0.0-beta.16

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/dist/index.cjs CHANGED
@@ -636,8 +636,7 @@ var ts = [
636
636
  languageOptions: {
637
637
  parser: tsParser,
638
638
  parserOptions: {
639
- sourceType: "module",
640
- project: true
639
+ sourceType: "module"
641
640
  }
642
641
  },
643
642
  plugins: {
@@ -778,7 +777,7 @@ var react = [
778
777
  files: [GLOB_JSX, GLOB_TSX],
779
778
  plugins: {
780
779
  react: import_eslint_plugin_react.default,
781
- reactHooks: import_eslint_plugin_react_hooks.default
780
+ "react-hooks": import_eslint_plugin_react_hooks.default
782
781
  },
783
782
  settings: {
784
783
  react: {
package/dist/index.js CHANGED
@@ -554,8 +554,7 @@ var ts = [
554
554
  languageOptions: {
555
555
  parser: tsParser,
556
556
  parserOptions: {
557
- sourceType: "module",
558
- project: true
557
+ sourceType: "module"
559
558
  }
560
559
  },
561
560
  plugins: {
@@ -696,7 +695,7 @@ var react = [
696
695
  files: [GLOB_JSX, GLOB_TSX],
697
696
  plugins: {
698
697
  react: reactPlugin,
699
- reactHooks: reactHooksPlugin
698
+ "react-hooks": reactHooksPlugin
700
699
  },
701
700
  settings: {
702
701
  react: {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@ntnyq/eslint-config",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.14",
5
- "packageManager": "pnpm@8.6.12",
4
+ "version": "2.0.0-beta.16",
5
+ "packageManager": "pnpm@8.7.0",
6
6
  "description": "ESLint flat config of ntnyq",
7
7
  "keywords": [
8
8
  "eslint",
@@ -41,15 +41,15 @@
41
41
  "eslint": "^8.30.0"
42
42
  },
43
43
  "dependencies": {
44
- "@eslint/js": "^8.47.0",
45
- "@typescript-eslint/eslint-plugin": "^6.4.0",
46
- "@typescript-eslint/parser": "^6.4.0",
47
- "astro-eslint-parser": "^0.14.0",
44
+ "@eslint/js": "^8.48.0",
45
+ "@typescript-eslint/eslint-plugin": "^6.5.0",
46
+ "@typescript-eslint/parser": "^6.5.0",
47
+ "astro-eslint-parser": "^0.15.0",
48
48
  "eslint-config-prettier": "^9.0.0",
49
49
  "eslint-define-config": "^1.23.0",
50
- "eslint-plugin-astro": "^0.28.0",
50
+ "eslint-plugin-astro": "^0.29.0",
51
51
  "eslint-plugin-eslint-comments": "^3.2.0",
52
- "eslint-plugin-import": "^2.28.0",
52
+ "eslint-plugin-import": "^2.28.1",
53
53
  "eslint-plugin-jsonc": "^2.9.0",
54
54
  "eslint-plugin-markdown": "^3.0.1",
55
55
  "eslint-plugin-prettier": "^5.0.0",
@@ -67,16 +67,16 @@
67
67
  },
68
68
  "devDependencies": {
69
69
  "@ntnyq/prettier-config": "^1.12.4",
70
- "@types/node": "^20.5.0",
71
- "bumpp": "^9.1.1",
72
- "eslint": "^8.47.0",
70
+ "@types/node": "^20.5.7",
71
+ "bumpp": "^9.2.0",
72
+ "eslint": "^8.48.0",
73
73
  "husky": "^8.0.3",
74
74
  "nano-staged": "^0.8.0",
75
75
  "npm-run-all": "^4.1.5",
76
- "pnpm": "^8.6.12",
76
+ "pnpm": "^8.7.0",
77
77
  "rimraf": "^5.0.1",
78
78
  "tsup": "^7.2.0",
79
- "typescript": "5.1.6"
79
+ "typescript": "5.2.2"
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=16.14.0"
@@ -88,7 +88,7 @@
88
88
  "scripts": {
89
89
  "build": "tsup",
90
90
  "clean": "rimraf dist",
91
- "lint": "ESLINT_USE_FLAT_CONFIG=true eslint .",
91
+ "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs .",
92
92
  "release": "run-s release:check release:version",
93
93
  "release:check": "run-s clean build lint typecheck",
94
94
  "release:version": "bumpp && pnpm publish --tag next",