@homestuck/eslint-config 1.4.0 → 1.5.1

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/CHANGELOG.md CHANGED
@@ -1,32 +1,44 @@
1
1
  # Changelog
2
2
 
3
- ## [1.4.0](https://github.com/homestuck/configs/compare/eslint-config@v1.3.0...eslint-config@v1.4.0) (2026-01-19)
3
+ ## [1.5.1](https://github.com/homestuck/configs/compare/eslint-config@v1.5.0...eslint-config@v1.5.1) (2026-01-20)
4
+
5
+ ### Miscellaneous Chores
6
+
7
+ - release 1.5.1 ([afdbfd6](https://github.com/homestuck/configs/commit/afdbfd65edeb63f455a91f5e38503ee0c1abbafa))
4
8
 
9
+ ## [1.5.0](https://github.com/homestuck/configs/compare/eslint-config@v1.4.0...eslint-config@v1.5.0) (2026-01-20)
5
10
 
6
11
  ### Features
7
12
 
8
- * **eslint:** Revised eslint configs to be cleaner, adding package script for config inspector ([#41](https://github.com/homestuck/configs/issues/41)) ([4156bb3](https://github.com/homestuck/configs/commit/4156bb30d003144676a7d6319f8dfc03f66ecfe6))
13
+ - Move dependencies out of workspace and into packages ([#45](https://github.com/homestuck/configs/issues/45)) ([c89558b](https://github.com/homestuck/configs/commit/c89558b3446898ccd5661cf514586edfbbb41993))
9
14
 
10
- ## [1.3.0](https://github.com/homestuck/configs/compare/eslint-config@v1.2.0...eslint-config@v1.3.0) (2026-01-15)
15
+ ### Miscellaneous Chores
11
16
 
17
+ - release 1.5.0 ([6f23a21](https://github.com/homestuck/configs/commit/6f23a21179bf1a4c2267478248b64158670efab6))
18
+
19
+ ## [1.4.0](https://github.com/homestuck/configs/compare/eslint-config@v1.3.0...eslint-config@v1.4.0) (2026-01-19)
20
+
21
+ ### Features
22
+
23
+ - **eslint:** Revised eslint configs to be cleaner, adding package script for config inspector ([#41](https://github.com/homestuck/configs/issues/41)) ([4156bb3](https://github.com/homestuck/configs/commit/4156bb30d003144676a7d6319f8dfc03f66ecfe6))
24
+
25
+ ## [1.3.0](https://github.com/homestuck/configs/compare/eslint-config@v1.2.0...eslint-config@v1.3.0) (2026-01-15)
12
26
 
13
27
  ### Miscellaneous Chores
14
28
 
15
- * release 1.3.0 ([c010dbb](https://github.com/homestuck/configs/commit/c010dbb267e3d36d33cffd0f9827484b89125f96))
29
+ - release 1.3.0 ([c010dbb](https://github.com/homestuck/configs/commit/c010dbb267e3d36d33cffd0f9827484b89125f96))
16
30
 
17
31
  ## [1.2.0](https://github.com/homestuck/configs/compare/eslint-config@v1.1.1...eslint-config@v1.2.0) (2025-12-15)
18
32
 
19
-
20
33
  ### Features
21
34
 
22
- * **eslint:** Add NextJS config to Eslint exports ([#18](https://github.com/homestuck/configs/issues/18)) ([54c5dc9](https://github.com/homestuck/configs/commit/54c5dc9625646c09e3ab7ebe917af43fb1ca871c))
35
+ - **eslint:** Add NextJS config to Eslint exports ([#18](https://github.com/homestuck/configs/issues/18)) ([54c5dc9](https://github.com/homestuck/configs/commit/54c5dc9625646c09e3ab7ebe917af43fb1ca871c))
23
36
 
24
37
  ## [1.1.1](https://github.com/homestuck/configs/compare/eslint-config@v1.1.0...eslint-config@v1.1.1) (2025-12-15)
25
38
 
26
-
27
39
  ### Bug Fixes
28
40
 
29
- * **eslint:** Move eslint and globals from devDeps to deps ([#17](https://github.com/homestuck/configs/issues/17)) ([c91d958](https://github.com/homestuck/configs/commit/c91d958f76568dcc3b58e725ac2617a0c55633b9))
41
+ - **eslint:** Move eslint and globals from devDeps to deps ([#17](https://github.com/homestuck/configs/issues/17)) ([c91d958](https://github.com/homestuck/configs/commit/c91d958f76568dcc3b58e725ac2617a0c55633b9))
30
42
 
31
43
  ## [1.1.0](https://github.com/homestuck/configs/compare/eslint-config@v1.0.1...eslint-config@v1.1.0) (2025-12-11)
32
44
 
package/eslint.config.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable import/no-named-as-default-member */
2
2
  import js from '@eslint/js'
3
- import tseslintParser from '@typescript-eslint/parser'
4
- import eslintConfigPrettier from 'eslint-config-prettier/flat'
3
+ import tsParser from '@typescript-eslint/parser'
4
+ import prettierConfig from 'eslint-config-prettier/flat'
5
5
  import pluginImport from 'eslint-plugin-import'
6
6
  import pluginPerfectionist from 'eslint-plugin-perfectionist'
7
7
  import pluginRegexp from 'eslint-plugin-regexp'
@@ -30,7 +30,7 @@ const rootEslintConfig = defineConfig(
30
30
  pluginImport.flatConfigs.recommended,
31
31
  // @ts-expect-error --- false positive
32
32
  pluginStorybook.configs['flat/recommended'],
33
- { ...eslintConfigPrettier, name: 'prettier/recommended' },
33
+ { ...prettierConfig, name: 'prettier/recommended' },
34
34
  globalIgnores(
35
35
  ['**/.next', '**/dist', '**/pnpm-lock.yaml', '**/next-env.d.ts'],
36
36
  'Global Ignores',
@@ -41,7 +41,7 @@ const rootEslintConfig = defineConfig(
41
41
  globals: {
42
42
  ...globals.node,
43
43
  },
44
- parser: tseslintParser,
44
+ parser: tsParser,
45
45
  parserOptions: {
46
46
  ecmaFeatures: {
47
47
  jsx: true,
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@homestuck/eslint-config",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "private": false,
5
- "description": "Baseline eslint configs used and maintained by Homestuck Inc., et al.",
5
+ "description": "Baseline ESLint configs used and maintained by Homestuck Inc., et al.",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/homestuck/configs.git",
@@ -39,9 +39,9 @@
39
39
  "dependencies": {
40
40
  "@eslint/eslintrc": "^3.3.3",
41
41
  "@eslint/js": "^9.39.2",
42
- "@next/eslint-plugin-next": "^16.1.1",
43
- "@typescript-eslint/eslint-plugin": "^8.53.0",
44
- "@typescript-eslint/parser": "^8.53.0",
42
+ "@next/eslint-plugin-next": "^16.1.4",
43
+ "@typescript-eslint/eslint-plugin": "^8.53.1",
44
+ "@typescript-eslint/parser": "^8.53.1",
45
45
  "eslint": "^9.39.2",
46
46
  "eslint-config-prettier": "^10.1.8",
47
47
  "eslint-import-resolver-alias": "^1.1.2",
@@ -51,25 +51,24 @@
51
51
  "eslint-plugin-perfectionist": "^5.3.1",
52
52
  "eslint-plugin-prettier": "^5.5.5",
53
53
  "eslint-plugin-react": "^7.37.5",
54
- "eslint-plugin-react-compiler": "19.1.0-rc.2",
55
54
  "eslint-plugin-react-hooks": "^7.0.1",
56
55
  "eslint-plugin-react-you-might-not-need-an-effect": "^0.8.5",
57
56
  "eslint-plugin-regexp": "^2.10.0",
58
57
  "eslint-plugin-simple-import-sort": "^12.1.1",
59
58
  "eslint-plugin-storybook": "^10.1.11",
60
- "eslint-plugin-turbo": "^2.7.4",
59
+ "eslint-plugin-turbo": "^2.7.5",
61
60
  "eslint-plugin-unicorn": "^62.0.0",
62
61
  "eslint-plugin-unused-imports": "^4.3.0",
63
- "globals": "^17",
64
- "typescript-eslint": "^8.53.0"
62
+ "globals": "^17.0.0",
63
+ "typescript-eslint": "^8.53.1"
65
64
  },
66
65
  "devDependencies": {
67
66
  "@types/eslint": "^9.6.1",
68
67
  "@types/eslint__js": "^9.14.0",
69
- "@types/node": "^24.10.8",
70
- "prettier": "3.7.4",
71
- "@homestuck/tsconfig": "1.3.0",
72
- "@homestuck/prettier-config": "1.3.1"
68
+ "@types/node": "^25.0.9",
69
+ "prettier": "^3.8.0",
70
+ "@homestuck/prettier-config": "1.5.1",
71
+ "@homestuck/tsconfig": "1.5.1"
73
72
  },
74
73
  "scripts": {
75
74
  "clean": "rm -rf .turbo node_modules",
package/react.mjs CHANGED
@@ -3,7 +3,6 @@
3
3
  // @ts-expect-error - no types
4
4
  import pluginJSXA11y from 'eslint-plugin-jsx-a11y'
5
5
  import pluginReact from 'eslint-plugin-react'
6
- import pluginReactCompiler from 'eslint-plugin-react-compiler'
7
6
  import pluginReactHooks from 'eslint-plugin-react-hooks'
8
7
  import pluginReactYouMightNotNeedAnEffect from 'eslint-plugin-react-you-might-not-need-an-effect'
9
8
  import { defineConfig } from 'eslint/config'
@@ -24,10 +23,6 @@ const $config = defineConfig(
24
23
  ...pluginReactYouMightNotNeedAnEffect.configs.recommended,
25
24
  name: 'react-you-might-not-need-an-effect/recommended',
26
25
  },
27
- {
28
- ...pluginReactCompiler.configs.recommended,
29
- name: 'react-compiler/recommended',
30
- },
31
26
  // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
32
27
  pluginJSXA11y.flatConfigs.recommended,
33
28
  {