isaacscript-lint 5.8.4 → 5.9.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 +3 -2
  2. package/package.json +14 -13
package/README.md CHANGED
@@ -120,8 +120,8 @@ Create a `tsconfig.eslint.json` file in the root of your repository:
120
120
  "extends": "./tsconfig.json",
121
121
 
122
122
  // We want to lint every file in the repository, regardless of whether it is actually bundled into
123
- // the TypeScript output or not. Two entries for each file extension are needed because TypeScript
124
- // will exclude files that begin with a period from an asterisk glob by default.
123
+ // the TypeScript output. Two entries for each file extension are needed because TypeScript will
124
+ // exclude files that begin with a period from an asterisk glob by default.
125
125
  "include": [
126
126
  "./**/*.js",
127
127
  "./**/.*.js",
@@ -253,6 +253,7 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
253
253
  - [`knip`](https://github.com/webpro/knip) - A tool to look for unused files, dependencies, and exports.
254
254
  - [`prettier`](https://github.com/prettier/prettier) - The main code formatter, as explained above.
255
255
  - [`prettier-plugin-organize-imports`](https://github.com/simonhaenisch/prettier-plugin-organize-imports) - A plugin used because Prettier will not organize imports automatically.
256
+ - [`prettier-plugin-packagejson`](https://github.com/matzkoh/prettier-plugin-packagejson) - A plugin used because Prettier will not organize "package.json" files automatically.
256
257
  - [`ts-prune`](https://github.com/nadeesha/ts-prune) - A tool to look for unused exports. (This is not needed if you use `knip`.)
257
258
 
258
259
  <br>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "5.8.4",
3
+ "version": "5.9.0",
4
4
  "description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "isaacscript",
@@ -21,29 +21,30 @@
21
21
  "author": "Zamiell",
22
22
  "type": "module",
23
23
  "dependencies": {
24
- "@prettier/plugin-xml": "^3.2.0",
25
- "@typescript-eslint/eslint-plugin": "^6.5.0",
26
- "@typescript-eslint/parser": "^6.5.0",
27
- "cspell": "^7.1.1",
24
+ "@prettier/plugin-xml": "^3.2.1",
25
+ "@typescript-eslint/eslint-plugin": "^6.7.0",
26
+ "@typescript-eslint/parser": "^6.7.0",
27
+ "cspell": "^7.3.6",
28
28
  "cspell-check-unused-words": "^1.0.6",
29
- "eslint": "^8.48.0",
29
+ "eslint": "^8.49.0",
30
30
  "eslint-config-isaacscript": "^4.1.0",
31
31
  "eslint-config-prettier": "^9.0.0",
32
- "eslint-plugin-deprecation": "^1.5.0",
32
+ "eslint-plugin-deprecation": "^2.0.0",
33
33
  "eslint-plugin-eslint-comments": "^3.2.0",
34
34
  "eslint-plugin-import": "npm:eslint-plugin-i@latest",
35
- "eslint-plugin-isaacscript": "^3.5.4",
36
- "eslint-plugin-jsdoc": "^46.5.0",
37
- "eslint-plugin-n": "^16.0.2",
35
+ "eslint-plugin-isaacscript": "^3.5.5",
36
+ "eslint-plugin-jsdoc": "^46.6.0",
37
+ "eslint-plugin-n": "^16.1.0",
38
38
  "eslint-plugin-no-autofix": "^1.2.3",
39
39
  "eslint-plugin-only-warn": "^1.1.0",
40
40
  "eslint-plugin-unicorn": "^48.0.1",
41
- "knip": "^2.20.2",
42
- "prettier": "^3.0.2",
41
+ "knip": "^2.24.0",
42
+ "prettier": "^3.0.3",
43
43
  "prettier-plugin-organize-imports": "^3.2.3",
44
+ "prettier-plugin-packagejson": "^2.4.5",
44
45
  "ts-prune-2": "^0.10.7"
45
46
  },
46
47
  "peerDependencies": {
47
- "typescript": ">= 4.0.0"
48
+ "typescript": ">= 5.0.0"
48
49
  }
49
50
  }