isaacscript-lint 1.0.91 → 1.0.92

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -197,6 +197,7 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
197
197
 
198
198
  ## Package Documentation
199
199
 
200
+ - [`@prettier/plugin-xml`](https://github.com/prettier/plugin-xml) - Allows Prettier to format XML files, which are common in Isaac mods.
200
201
  - [`@typescript-eslint/eslint-plugin`](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin) - Required as a peer dependency for `eslint-config-airbnb-typescript`.
201
202
  - [`@typescript-eslint/parser`](https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser) - Required as a peer dependency for `eslint-config-airbnb-typescript`.
202
203
  - [`cspell`](https://github.com/streetsidesoftware/cspell) - A spell checker for code that is intended to be paired with the [Code Spell Checker VSCode extension](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker).
@@ -210,9 +211,11 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
210
211
  - [`eslint-plugin-import`](https://github.com/benmosher/eslint-plugin-import) - Required as a peer dependency for `eslint-config-airbnb-base`.
211
212
  - [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) - A plugin that provides rules for [JSDoc](https://en.wikipedia.org/wiki/JSDoc).
212
213
  - [`eslint-plugin-no-implicit-map-set-loops`](https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops) - A plugin that prevents unsafe iteration.
214
+ - [`eslint-plugin-no-let-any`](https://github.com/Zamiell/eslint-plugin-no-let-any) - A plugin to prevent unsafe variable declarations.
213
215
  - [`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
216
  - [`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
217
  - [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
218
+ - [`eslint-plugin-sort-exports`](https://github.com/jrdrg/eslint-plugin-sort-exports) - A plugin that allows exports to be sorted alphabetically.
216
219
  - [`prettier`](https://github.com/prettier/prettier) - This is the main code formatter, as explained above.
217
220
  - [`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.)
218
221
  - [`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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "An updatable linting dependency container for IsaacScript and TypeScript projects",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,18 +15,19 @@
15
15
  "cspell": "^5.19.2",
16
16
  "eslint": "^8.11.0",
17
17
  "eslint-config-airbnb-base": "^15.0.0",
18
- "eslint-config-airbnb-typescript": "^16.1.3",
18
+ "eslint-config-airbnb-typescript": "^16.1.4",
19
19
  "eslint-config-isaacscript": "^1.0.59",
20
20
  "eslint-config-prettier": "^8.5.0",
21
21
  "eslint-plugin-eqeqeq-fix": "^1.0.3",
22
22
  "eslint-plugin-eslint-comments": "^3.2.0",
23
23
  "eslint-plugin-import": "^2.25.4",
24
- "eslint-plugin-jsdoc": "^38.0.4",
24
+ "eslint-plugin-jsdoc": "^38.0.6",
25
25
  "eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
26
26
  "eslint-plugin-no-let-any": "^1.0.3",
27
27
  "eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
28
28
  "eslint-plugin-no-void-return-type": "^1.0.2",
29
29
  "eslint-plugin-only-warn": "^1.0.3",
30
+ "eslint-plugin-sort-exports": "^0.6.0",
30
31
  "prettier": "^2.6.0",
31
32
  "prettier-plugin-organize-imports": "^2.3.4",
32
33
  "ts-prune": "^0.10.3"