@homestuck/eslint-config 1.4.0 → 1.5.0
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 +12 -0
- package/eslint.config.mjs +4 -4
- package/package.json +12 -13
- package/react.mjs +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.0](https://github.com/homestuck/configs/compare/eslint-config@v1.4.0...eslint-config@v1.5.0) (2026-01-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* 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
|
+
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* release 1.5.0 ([6f23a21](https://github.com/homestuck/configs/commit/6f23a21179bf1a4c2267478248b64158670efab6))
|
|
14
|
+
|
|
3
15
|
## [1.4.0](https://github.com/homestuck/configs/compare/eslint-config@v1.3.0...eslint-config@v1.4.0) (2026-01-19)
|
|
4
16
|
|
|
5
17
|
|
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
|
|
4
|
-
import
|
|
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
|
-
{ ...
|
|
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:
|
|
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.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "Baseline
|
|
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.
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "^8.53.
|
|
44
|
-
"@typescript-eslint/parser": "^8.53.
|
|
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.
|
|
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.
|
|
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": "^
|
|
70
|
-
"prettier": "3.
|
|
71
|
-
"@homestuck/
|
|
72
|
-
"@homestuck/
|
|
68
|
+
"@types/node": "^25.0.9",
|
|
69
|
+
"prettier": "^3.8.0",
|
|
70
|
+
"@homestuck/prettier-config": "1.5.0",
|
|
71
|
+
"@homestuck/tsconfig": "1.5.0"
|
|
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
|
{
|