isaacscript-lint 1.0.111 → 1.0.112
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 +3 -4
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
[](https://www.npmjs.com/package/isaacscript-lint)
|
|
2
|
-
|
|
3
1
|
# isaacscript-lint
|
|
4
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/isaacscript-lint)
|
|
4
|
+
|
|
5
5
|
`isaacscript-lint` is a helper package to install all of the dependencies necessary for ESLint to work with a typical TypeScript project or a typical IsaacScript mod.
|
|
6
6
|
|
|
7
7
|
For more information about IsaacScript, see the [webpage](https://isaacscript.github.io/).
|
|
@@ -66,7 +66,7 @@ It should have a `package.json` file, a `tsconfig.json` file, and so on.
|
|
|
66
66
|
|
|
67
67
|
### Step 1 - Install the Dependency
|
|
68
68
|
|
|
69
|
-
```
|
|
69
|
+
```sh
|
|
70
70
|
npm install isaacscript-lint --save-dev
|
|
71
71
|
```
|
|
72
72
|
|
|
@@ -214,7 +214,6 @@ Optionally, you can also provide a hint to anyone cloning your repository that t
|
|
|
214
214
|
- [`eslint-plugin-import`](https://github.com/benmosher/eslint-plugin-import) - Required as a peer dependency for `eslint-config-airbnb-base`.
|
|
215
215
|
- [`eslint-plugin-jsdoc`](https://github.com/gajus/eslint-plugin-jsdoc) - A plugin that provides rules for [JSDoc](https://en.wikipedia.org/wiki/JSDoc).
|
|
216
216
|
- [`eslint-plugin-no-implicit-map-set-loops`](https://github.com/Zamiell/eslint-plugin-no-implicit-map-set-loops) - A plugin that prevents unsafe iteration.
|
|
217
|
-
- [`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.
|
|
218
217
|
- [`eslint-plugin-only-warn`](https://github.com/bfanger/eslint-plugin-only-warn) - A plugin that turns all errors to warnings.
|
|
219
218
|
- [`eslint-plugin-sort-exports`](https://github.com/jrdrg/eslint-plugin-sort-exports) - A plugin that allows exports to be sorted alphabetically.
|
|
220
219
|
- [`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": "1.0.
|
|
3
|
+
"version": "1.0.112",
|
|
4
4
|
"description": "An updatable linting dependency container for IsaacScript and TypeScript projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"eslint": "^8.14.0",
|
|
17
17
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
18
18
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
19
|
-
"eslint-config-isaacscript": "^1.0.
|
|
19
|
+
"eslint-config-isaacscript": "^1.0.67",
|
|
20
20
|
"eslint-config-prettier": "^8.5.0",
|
|
21
21
|
"eslint-plugin-comment-length-2": "^0.5.8",
|
|
22
22
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
"eslint-plugin-isaacscript": "^1.0.3",
|
|
25
25
|
"eslint-plugin-jsdoc": "^39.2.9",
|
|
26
26
|
"eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
|
|
27
|
-
"eslint-plugin-no-void-return-type": "^1.0.2",
|
|
28
27
|
"eslint-plugin-only-warn": "^1.0.3",
|
|
29
28
|
"eslint-plugin-sort-exports": "^0.6.0",
|
|
30
29
|
"prettier": "^2.6.2",
|