isaacscript-lint 4.0.1 → 4.1.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +10 -9
package/README.md CHANGED
@@ -207,6 +207,7 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
207
207
  - [`eslint-plugin-import`](https://github.com/benmosher/eslint-plugin-import) - Required as a peer dependency for `eslint-config-airbnb-base`.
208
208
  - [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) - A plugin that provides rules for [JSDoc](https://en.wikipedia.org/wiki/JSDoc).
209
209
  - [`eslint-plugin-no-implicit-map-set-loops`](https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops) - A plugin that prevents unsafe iteration.
210
+ - [`eslint-plugin-no-type-assertion`](https://github.com/Dremora/eslint-plugin-no-type-assertion) - A plugin that detects type assertions.
210
211
  - [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
211
212
  - [`eslint-plugin-sort-exports`](https://github.com/jrdrg/eslint-plugin-sort-exports) - A plugin that allows exports to be sorted alphabetically.
212
213
  - [`prettier`](https://github.com/prettier/prettier) - This is the main code formatter, as explained above.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "4.0.1",
3
+ "version": "4.1.0",
4
4
  "description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "isaacscript",
@@ -22,22 +22,23 @@
22
22
  "type": "commonjs",
23
23
  "dependencies": {
24
24
  "@prettier/plugin-xml": "^2.2.0",
25
- "@typescript-eslint/eslint-plugin": "^5.30.6",
26
- "@typescript-eslint/parser": "^5.30.6",
27
- "cspell": "^6.3.0",
28
- "eslint": "^8.20.0",
25
+ "@typescript-eslint/eslint-plugin": "^5.32.0",
26
+ "@typescript-eslint/parser": "^5.32.0",
27
+ "cspell": "^6.5.0",
28
+ "eslint": "^8.21.0",
29
29
  "eslint-config-airbnb-base": "^15.0.0",
30
30
  "eslint-config-airbnb-typescript": "^17.0.0",
31
- "eslint-config-isaacscript": "^3.0.1",
31
+ "eslint-config-isaacscript": "^3.0.2",
32
32
  "eslint-config-prettier": "^8.5.0",
33
33
  "eslint-plugin-eslint-comments": "^3.2.0",
34
34
  "eslint-plugin-import": "^2.26.0",
35
- "eslint-plugin-isaacscript": "^1.5.0",
36
- "eslint-plugin-jsdoc": "^39.3.3",
35
+ "eslint-plugin-isaacscript": "^1.5.1",
36
+ "eslint-plugin-jsdoc": "^39.3.4",
37
+ "eslint-plugin-no-type-assertion": "^1.3.0",
37
38
  "eslint-plugin-only-warn": "^1.0.3",
38
39
  "eslint-plugin-sort-exports": "^0.7.0",
39
40
  "prettier": "^2.7.1",
40
- "prettier-plugin-organize-imports": "^3.0.0",
41
+ "prettier-plugin-organize-imports": "^3.0.1",
41
42
  "ts-prune": "^0.10.3"
42
43
  },
43
44
  "peerDependencies": {