isaacscript-lint 7.1.0 → 7.1.1
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/README.md +1 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ This is a meta package to install all of the dependencies necessary for [Prettie
|
|
|
8
8
|
|
|
9
9
|
## Package Documentation
|
|
10
10
|
|
|
11
|
+
- [`@prettier/plugin-xml`](https://github.com/prettier/plugin-xml) - Allows Prettier to format XML files, which are common in Binding of Isaac mods.
|
|
11
12
|
- [`complete-lint`](https://complete-ts.github.io/overview.html) - A meta-package to install all of the necessary ESLint and Prettier dependencies.
|
|
12
13
|
- [`isaacscript-spell](https://github.com/IsaacScript/isaacscript/tree/main/packages/isaacscript-spell) - A collection of CSpell dictionaries for IsaacScript mods.
|
|
13
14
|
- [`isaacscript-tsconfig`](https://github.com/IsaacScript/isaacscript/tree/main/packages/isaacscript-tsconfig) - A TypeScript configuration file for IsaacScript mods.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-lint",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaacscript",
|
|
@@ -26,9 +26,10 @@
|
|
|
26
26
|
"README.md"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"
|
|
29
|
+
"@prettier/plugin-xml": "^3.4.2",
|
|
30
|
+
"complete-lint": "^3.0.3",
|
|
30
31
|
"eslint-config-isaacscript": "^5.0.2",
|
|
31
|
-
"eslint-import-resolver-typescript": "^3.
|
|
32
|
+
"eslint-import-resolver-typescript": "^3.7.0",
|
|
32
33
|
"isaacscript-spell": "^1.15.2",
|
|
33
34
|
"isaacscript-tsconfig": "^7.0.1",
|
|
34
35
|
"ts-prune-2": "^0.10.7"
|