isaacscript-lint 1.0.105 → 1.0.108
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 -4
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -209,14 +209,11 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
|
|
|
209
209
|
- [`eslint-config-isaacscript`](https://github.com/IsaacScript/eslint-config-isaacscript) - Contains the master ESLint configuration.
|
|
210
210
|
- [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier) - Turns off all rules that conflict with Prettier.
|
|
211
211
|
- [`eslint-plugin-comment-length`](https://github.com/lasselupe33/eslint-plugin-comment-length) - A plugin that provides rules for automatically fixing long comments.
|
|
212
|
-
- [`eslint-plugin-
|
|
212
|
+
- [`eslint-plugin-isaacscript`](https://github.com/IsaacScript/eslint-plugin-isaacscript) - A plugin that provides a collection of miscellaneous rules that help keep code safe.
|
|
213
213
|
- [`eslint-plugin-eslint-comments`](https://github.com/mysticatea/eslint-plugin-eslint-comments) - A plugin that provides rules relating to ESLint comments.
|
|
214
214
|
- [`eslint-plugin-import`](https://github.com/benmosher/eslint-plugin-import) - Required as a peer dependency for `eslint-config-airbnb-base`.
|
|
215
215
|
- [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) - A plugin that provides rules for [JSDoc](https://en.wikipedia.org/wiki/JSDoc).
|
|
216
|
-
- [`eslint-plugin-no-array-any`](https://github.com/Zamiell/eslint-plugin-no-array-any) - A plugin to prevent unsafe array declarations.
|
|
217
216
|
- [`eslint-plugin-no-implicit-map-set-loops`](https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops) - A plugin that prevents unsafe iteration.
|
|
218
|
-
- [`eslint-plugin-no-let-any`](https://github.com/Zamiell/eslint-plugin-no-let-any) - A plugin to prevent unsafe variable declarations.
|
|
219
|
-
- [`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.
|
|
220
217
|
- [`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.
|
|
221
218
|
- [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
|
|
222
219
|
- [`eslint-plugin-sort-exports`](https://github.com/jrdrg/eslint-plugin-sort-exports) - A plugin that allows exports to be sorted alphabetically.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-lint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108",
|
|
4
4
|
"description": "An updatable linting dependency container for IsaacScript and TypeScript projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,17 +16,14 @@
|
|
|
16
16
|
"eslint": "^8.14.0",
|
|
17
17
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
18
18
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
19
|
-
"eslint-config-isaacscript": "^1.0.
|
|
19
|
+
"eslint-config-isaacscript": "^1.0.66",
|
|
20
20
|
"eslint-config-prettier": "^8.5.0",
|
|
21
21
|
"eslint-plugin-comment-length-2": "^0.5.8",
|
|
22
|
-
"eslint-plugin-eqeqeq-fix": "^1.0.3",
|
|
23
22
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
24
23
|
"eslint-plugin-import": "^2.26.0",
|
|
24
|
+
"eslint-plugin-isaacscript": "^1.0.0",
|
|
25
25
|
"eslint-plugin-jsdoc": "^39.2.9",
|
|
26
|
-
"eslint-plugin-no-array-any": "^1.0.2",
|
|
27
26
|
"eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
|
|
28
|
-
"eslint-plugin-no-let-any": "^1.0.3",
|
|
29
|
-
"eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
|
|
30
27
|
"eslint-plugin-no-void-return-type": "^1.0.2",
|
|
31
28
|
"eslint-plugin-only-warn": "^1.0.3",
|
|
32
29
|
"eslint-plugin-sort-exports": "^0.6.0",
|