isaacscript-lint 4.12.1 → 4.13.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 +2 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -223,9 +223,10 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
|
|
|
223
223
|
- [`eslint-config-airbnb-typescript`](https://github.com/iamturns/eslint-config-airbnb-typescript) - Enhances the Airbnb rules with TypeScript support.
|
|
224
224
|
- [`eslint-config-isaacscript`](https://github.com/IsaacScript/isaacscript/tree/main/packages/eslint-config-isaacscript) - Contains the master ESLint configuration.
|
|
225
225
|
- [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) - Turns off all rules that conflict with Prettier.
|
|
226
|
-
- [`eslint-plugin-
|
|
226
|
+
- [`eslint-plugin-deprecation`](https://github.com/gund/eslint-plugin-deprecation) - Finds deprecated code.
|
|
227
227
|
- [`eslint-plugin-eslint-comments`](https://github.com/mysticatea/eslint-plugin-eslint-comments) - A plugin that provides rules relating to ESLint comments.
|
|
228
228
|
- [`eslint-plugin-import`](https://github.com/benmosher/eslint-plugin-import) - Required as a peer dependency for `eslint-config-airbnb-base`.
|
|
229
|
+
- [`eslint-plugin-isaacscript`](https://github.com/IsaacScript/isaacscript/tree/main/packages/eslint-plugin-isaacscript) - A plugin that provides a collection of miscellaneous rules that help keep code safe.
|
|
229
230
|
- [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) - A plugin that provides rules for [JSDoc](https://en.wikipedia.org/wiki/JSDoc).
|
|
230
231
|
- [`eslint-plugin-no-type-assertion`](https://github.com/Dremora/eslint-plugin-no-type-assertion) - A plugin that detects type assertions. (In the standard config, these rules are not turned on automatically, but they are extremely useful in certain specific contexts.)
|
|
231
232
|
- [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-lint",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.13.0",
|
|
4
4
|
"description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaacscript",
|
|
@@ -23,15 +23,16 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@prettier/plugin-xml": "^2.2.0",
|
|
25
25
|
"@tsconfig/recommended": "^1.0.2",
|
|
26
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
27
|
-
"@typescript-eslint/parser": "^5.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.53.0",
|
|
28
28
|
"cspell": "^6.26.3",
|
|
29
29
|
"cspell-check-unused-words": "^1.0.4",
|
|
30
30
|
"eslint": "^8.34.0",
|
|
31
31
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
32
32
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
33
|
-
"eslint-config-isaacscript": "^3.
|
|
33
|
+
"eslint-config-isaacscript": "^3.6.0",
|
|
34
34
|
"eslint-config-prettier": "^8.6.0",
|
|
35
|
+
"eslint-plugin-deprecation": "^1.3.3",
|
|
35
36
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
36
37
|
"eslint-plugin-import": "^2.27.5",
|
|
37
38
|
"eslint-plugin-isaacscript": "^2.4.0",
|