isaacscript-lint 7.2.1 → 7.3.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 +2 -1
  2. package/package.json +2 -7
package/README.md CHANGED
@@ -10,7 +10,8 @@ This is a meta package to install all of the dependencies necessary for [Prettie
10
10
 
11
11
  - [`@prettier/plugin-xml`](https://github.com/prettier/plugin-xml) - Allows Prettier to format XML files, which are common in Binding of Isaac mods.
12
12
  - [`complete-lint`](https://complete-ts.github.io/overview.html) - A meta-package to install all of the necessary ESLint and Prettier dependencies.
13
+ - [`eslint-config-isaacscript`] - Contains the master ESLint configuration.
14
+ - [`eslint-import-resolver-typescript`](https://github.com/import-js/eslint-import-resolver-typescript) - Necessary for `eslint-plugin-import-x` to work properly, which is part of `eslint-config-complete`. (Even though it is a direct dependency of `eslint-config-complete`, it does not work properly when it is a nested transitive dependency, so it must explicitly be in this package.)
13
15
  - [`isaacscript-spell](https://github.com/IsaacScript/isaacscript/tree/main/packages/isaacscript-spell) - A collection of CSpell dictionaries for IsaacScript mods.
14
16
  - [`isaacscript-tsconfig`](https://github.com/IsaacScript/isaacscript/tree/main/packages/isaacscript-tsconfig) - A TypeScript configuration file for IsaacScript mods.
15
- - [`eslint-import-resolver-typescript`](https://github.com/import-js/eslint-import-resolver-typescript) - Necessary for `eslint-plugin-import-x` to work properly, which is part of `eslint-config-complete`. (Even though it is a direct dependency of `eslint-config-complete`, it does not work properly when it is a nested transitive dependency, so it must explicitly be in this package.)
16
17
  - [`ts-prune`](https://github.com/nadeesha/ts-prune) - A tool to look for unused exports.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "7.2.1",
3
+ "version": "7.3.0",
4
4
  "description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "isaacscript",
@@ -20,14 +20,9 @@
20
20
  "license": "MIT",
21
21
  "author": "Zamiell",
22
22
  "type": "module",
23
- "files": [
24
- "LICENSE",
25
- "package.json",
26
- "README.md"
27
- ],
28
23
  "dependencies": {
29
24
  "@prettier/plugin-xml": "3.4.2",
30
- "complete-lint": "3.1.1",
25
+ "complete-lint": "4.0.0",
31
26
  "eslint-config-isaacscript": "5.0.2",
32
27
  "eslint-import-resolver-typescript": "4.4.4",
33
28
  "isaacscript-spell": "1.15.2",