@sushichan044/eslint-todo 0.1.0 → 0.1.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/README.md +2 -3
- package/dist/cli/index.mjs +1 -1
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Simple tool to temporarily disable existing ESLint violations like `.rubocop_tod
|
|
|
4
4
|
|
|
5
5
|
It also has a utility that helps reducing ignored violations at your pace.
|
|
6
6
|
|
|
7
|
+
This tool is designed to work with AI Agents such as [Devin](https://devin.ai/).
|
|
8
|
+
|
|
7
9
|
> [!NOTE]
|
|
8
10
|
> This tool only supports ESLint Flat Config with ES Module.
|
|
9
11
|
>
|
|
@@ -109,9 +111,6 @@ Sure!
|
|
|
109
111
|
You can also set eslint-todo by passing a flag to the CLI.
|
|
110
112
|
Use `npx eslint-todo --help` to see all available options.
|
|
111
113
|
|
|
112
|
-
> [!CAUTION]
|
|
113
|
-
> The cli flag will be destructively renamed to the same name as the property on config file in v0.1.0.
|
|
114
|
-
|
|
115
114
|
> [!WARNING]
|
|
116
115
|
> Config from CLI flag overwrites the one in the configuration file.
|
|
117
116
|
> See the [unjs/defu documentation](https://github.com/unjs/defu) for the actual overwriting behavior.
|
package/dist/cli/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sushichan044/eslint-todo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"klona": "2.0.6",
|
|
47
47
|
"magicast": "0.3.5",
|
|
48
48
|
"pathe": "2.0.3",
|
|
49
|
-
"typia": "8.0
|
|
49
|
+
"typia": "8.1.0",
|
|
50
50
|
"valibot": "1.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@eslint/config-inspector": "1.0.2",
|
|
54
|
-
"@ryoppippi/unplugin-typia": "2.
|
|
55
|
-
"@samchon/openapi": "3.
|
|
54
|
+
"@ryoppippi/unplugin-typia": "2.1.4",
|
|
55
|
+
"@samchon/openapi": "3.2.2",
|
|
56
56
|
"@types/cross-spawn": "6.0.6",
|
|
57
57
|
"@types/fs-extra": "11.0.4",
|
|
58
58
|
"@types/node": "22.13.14",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
"@virtual-live-lab/tsconfig": "2.1.19",
|
|
62
62
|
"@vitest/coverage-v8": "3.0.9",
|
|
63
63
|
"@vitest/eslint-plugin": "1.1.38",
|
|
64
|
-
"eslint": "9.
|
|
64
|
+
"eslint": "9.23.0",
|
|
65
65
|
"eslint-flat-config-utils": "2.0.1",
|
|
66
66
|
"eslint-plugin-import-access": "2.2.2",
|
|
67
|
-
"eslint-plugin-unicorn": "
|
|
67
|
+
"eslint-plugin-unicorn": "58.0.0",
|
|
68
68
|
"eslint-typegen": "2.1.0",
|
|
69
69
|
"fs-extra": "11.3.0",
|
|
70
70
|
"globals": "16.0.0",
|
|
@@ -73,9 +73,10 @@
|
|
|
73
73
|
"prettier": "3.5.3",
|
|
74
74
|
"release-it": "18.1.2",
|
|
75
75
|
"release-it-pnpm": "4.6.4",
|
|
76
|
+
"rimraf": "6.0.1",
|
|
76
77
|
"ts-patch": "3.3.0",
|
|
77
78
|
"typescript": "5.8.2",
|
|
78
|
-
"typescript-eslint": "8.
|
|
79
|
+
"typescript-eslint": "8.28.0",
|
|
79
80
|
"unbuild": "3.5.0",
|
|
80
81
|
"vitest": "3.0.9"
|
|
81
82
|
},
|
|
@@ -94,6 +95,6 @@
|
|
|
94
95
|
"eslint:inspect": "eslint --inspect-config",
|
|
95
96
|
"pkg-pr-new": "pkg-pr-new publish --compact --comment=update --pnpm",
|
|
96
97
|
"check": "pnpm run build && pnpm run lint && pnpm run format:ci && pnpm run typecheck && pnpm run test:run",
|
|
97
|
-
"generate-json-schema": "typia generate --input src/config/json --output src/generated/config/json --project tsconfig.json"
|
|
98
|
+
"generate-json-schema": "rimraf src/generated/config && typia generate --input src/config/json --output src/generated/config/json --project tsconfig.json && rimraf src/generated/config/**/*.test.ts"
|
|
98
99
|
}
|
|
99
100
|
}
|