isaacscript-lint 1.0.79 → 1.0.80

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 +5 -5
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -155,19 +155,19 @@ Furthermore, you will probably want Prettier and ESLint to be run automatically
155
155
  // These are Visual Studio Code settings that should apply to this particular repository
156
156
  {
157
157
  "[javascript]": {
158
- "editor.defaultFormatter": "esbenp.prettier-vscode",
159
- "editor.formatOnSave": true,
160
158
  "editor.codeActionsOnSave": [
161
159
  "source.fixAll.eslint",
162
160
  ],
161
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
162
+ "editor.formatOnSave": true,
163
163
  },
164
164
 
165
165
  "[typescript]": {
166
- "editor.defaultFormatter": "esbenp.prettier-vscode",
167
- "editor.formatOnSave": true,
168
166
  "editor.codeActionsOnSave": [
169
167
  "source.fixAll.eslint",
170
168
  ],
169
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
170
+ "editor.formatOnSave": true,
171
171
  },
172
172
  }
173
173
  ```
@@ -213,7 +213,7 @@ 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
- - [`prettier`](https://github.com/prettier/prettier) - This is a peer dependency for `eslint-plugin-prettier`.
216
+ - [`prettier`](https://github.com/prettier/prettier) - This is the main code formatter, as explained above.
217
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.)
218
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.
219
219
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "description": "An updatable linting dependency container for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,18 +9,18 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "dependencies": {
12
- "@typescript-eslint/eslint-plugin": "^5.9.0",
13
- "@typescript-eslint/parser": "^5.9.0",
14
- "cspell": "^5.15.1",
15
- "eslint": "^8.6.0",
12
+ "@typescript-eslint/eslint-plugin": "^5.12.1",
13
+ "@typescript-eslint/parser": "^5.12.1",
14
+ "cspell": "^5.18.5",
15
+ "eslint": "^8.10.0",
16
16
  "eslint-config-airbnb-base": "^15.0.0",
17
17
  "eslint-config-airbnb-typescript": "^16.1.0",
18
- "eslint-config-isaacscript": "^1.0.54",
19
- "eslint-config-prettier": "^8.3.0",
18
+ "eslint-config-isaacscript": "^1.0.55",
19
+ "eslint-config-prettier": "^8.4.0",
20
20
  "eslint-plugin-eqeqeq-fix": "^1.0.3",
21
21
  "eslint-plugin-eslint-comments": "^3.2.0",
22
22
  "eslint-plugin-import": "^2.25.4",
23
- "eslint-plugin-jsdoc": "^37.6.1",
23
+ "eslint-plugin-jsdoc": "^37.9.4",
24
24
  "eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
25
25
  "eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
26
26
  "eslint-plugin-no-void-return-type": "^1.0.2",