isaacscript-lint 1.0.78 → 1.0.79
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/.cspell.json +2 -5
- package/README.md +1 -2
- package/package.json +1 -2
package/.cspell.json
CHANGED
package/README.md
CHANGED
|
@@ -213,9 +213,8 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
|
|
|
213
213
|
- [`eslint-plugin-no-template-curly-in-string-fix`](https://github.com/Zamiell/eslint-plugin-no-template-curly-in-string-fix) - A plugin that provides a better [`no-template-curly-in-string`](https://eslint.org/docs/rules/no-template-curly-in-string) rule.
|
|
214
214
|
- [`eslint-plugin-no-void-return-type`](https://github.com/Zamiell/eslint-plugin-no-void-return-type) - A plugin that disallows void return types on unexported functions.
|
|
215
215
|
- [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
|
|
216
|
-
- [`isaacscript-tsconfig`](https://github.com/IsaacScript/isaacscript-tsconfig) - A package that provides a shared TypeScript configuration file. This is included in the linting meta-package for convenience.
|
|
217
216
|
- [`prettier`](https://github.com/prettier/prettier) - This is a peer dependency for `eslint-plugin-prettier`.
|
|
218
217
|
- [`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.)
|
|
219
|
-
- [`ts-prune`](https://github.com/nadeesha/ts-prune) - A tool to look for unused exports, which
|
|
218
|
+
- [`ts-prune`](https://github.com/nadeesha/ts-prune) - A tool to look for unused exports, which catches bugs that the `import/no-unused-modules` rule cannot find.
|
|
220
219
|
|
|
221
220
|
<br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-lint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.79",
|
|
4
4
|
"description": "An updatable linting dependency container for IsaacScript projects.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
|
|
26
26
|
"eslint-plugin-no-void-return-type": "^1.0.2",
|
|
27
27
|
"eslint-plugin-only-warn": "^1.0.3",
|
|
28
|
-
"isaacscript-tsconfig": "^1.1.8",
|
|
29
28
|
"prettier": "^2.5.1",
|
|
30
29
|
"prettier-plugin-organize-imports": "^2.3.4",
|
|
31
30
|
"ts-prune": "^0.10.3"
|