isaacscript-lint 5.0.0 → 5.1.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/README.md +1 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -255,5 +255,6 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
|
|
|
255
255
|
- [`knip`](https://github.com/webpro/knip) - A tool to look for unused files, dependencies, and exports.
|
|
256
256
|
- [`prettier`](https://github.com/prettier/prettier) - This is the main code formatter, as explained above.
|
|
257
257
|
- [`prettier-plugin-organize-imports`](https://github.com/simonhaenisch/prettier-plugin-organize-imports) - A plugin used because Prettier will not organize imports automatically. (It has no configuration and is automatically applied to Prettier if it is installed.)
|
|
258
|
+
- [`ts-prune-2`](https://github.com/nadeesha/ts-prune) - A tool to look for unused exports.
|
|
258
259
|
|
|
259
260
|
<br>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-lint",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaacscript",
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"eslint-plugin-unicorn": "^48.0.1",
|
|
43
43
|
"knip": "^2.17.3",
|
|
44
44
|
"prettier": "^3.0.1",
|
|
45
|
-
"prettier-plugin-organize-imports": "^3.2.3"
|
|
45
|
+
"prettier-plugin-organize-imports": "^3.2.3",
|
|
46
|
+
"ts-prune-2": "^0.10.7"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"typescript": ">= 4.0.0"
|