isaacscript-lint 1.0.78 → 1.0.81

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 CHANGED
@@ -1,9 +1,5 @@
1
1
  {
2
- "version": "0.1",
3
- "language": "en",
4
- "dictionaries": [
5
- "en_US"
6
- ],
2
+ "version": "0.2",
7
3
  "words": [
8
4
  "dbaeumer",
9
5
  "eqeqeq",
@@ -16,6 +12,7 @@
16
12
  "rossum",
17
13
  "rustfmt",
18
14
  "tiamtowtdi",
15
+ "unexported",
19
16
  "zamiell"
20
17
  ]
21
18
  }
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,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
- - [`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.
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 catchs bugs that the `import/no-unused-modules` rule cannot find.
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.78",
3
+ "version": "1.0.81",
4
4
  "description": "An updatable linting dependency container for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,23 +9,23 @@
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
+ "eslint-plugin-no-let-any": "^1.0.1",
25
26
  "eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
26
27
  "eslint-plugin-no-void-return-type": "^1.0.2",
27
28
  "eslint-plugin-only-warn": "^1.0.3",
28
- "isaacscript-tsconfig": "^1.1.8",
29
29
  "prettier": "^2.5.1",
30
30
  "prettier-plugin-organize-imports": "^2.3.4",
31
31
  "ts-prune": "^0.10.3"