isaacscript-lint 4.16.8 → 4.16.9

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 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -44,7 +44,7 @@ ESLint is the industry standard tool for linting in JavaScript and TypeScript. A
44
44
 
45
45
  Because of the advantages of Prettier, we use it on top of the Airbnb config, and prefer Prettier's changes if there are any conflicts. Any ESLint rules that conflict with Prettier are turned off with [`eslint-config-prettier`](https://github.com/prettier/eslint-config-prettier).
46
46
 
47
- Finally, some specific Airbnb rules are disabled, since they don't make much sense in certain contexts. You can see the specific exclusions in the [base.js](https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/base.js) and [mod.js](https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/mod.js) files of the [`eslint-config-isaacscript`](https://github.com/IsaacScript/isaacscript/tree/main/packages/eslint-config-isaacscript) package.
47
+ Finally, some specific Airbnb rules are disabled, since they don't make much sense in certain contexts. You can see the specific exclusions in the [base.js](https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/configs/base.js) file of the [`eslint-config-isaacscript`](https://github.com/IsaacScript/isaacscript/tree/main/packages/eslint-config-isaacscript) package.
48
48
 
49
49
  In order to avoid running two different tools, we could use [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) to run Prettier as an ESLint rule. However, doing this [is not recommended by Prettier](https://prettier.io/docs/en/integrating-with-linters.html). Thus, in order to use `isaacscript-lint`, you should be running both Prettier and ESLint on save. (More info on that is below.)
50
50
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "4.16.8",
3
+ "version": "4.16.9",
4
4
  "description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "isaacscript",
@@ -23,27 +23,27 @@
23
23
  "dependencies": {
24
24
  "@prettier/plugin-xml": "^2.2.0",
25
25
  "@tsconfig/recommended": "^1.0.2",
26
- "@typescript-eslint/eslint-plugin": "^5.54.0",
27
- "@typescript-eslint/parser": "^5.54.0",
28
- "cspell": "^6.28.0",
26
+ "@typescript-eslint/eslint-plugin": "^5.56.0",
27
+ "@typescript-eslint/parser": "^5.56.0",
28
+ "cspell": "^6.30.2",
29
29
  "cspell-check-unused-words": "^1.0.4",
30
- "eslint": "^8.35.0",
30
+ "eslint": "^8.36.0",
31
31
  "eslint-config-airbnb-base": "^15.0.0",
32
32
  "eslint-config-airbnb-typescript": "^17.0.0",
33
33
  "eslint-config-isaacscript": "^3.7.1",
34
- "eslint-config-prettier": "^8.6.0",
34
+ "eslint-config-prettier": "^8.8.0",
35
35
  "eslint-plugin-deprecation": "^1.3.3",
36
36
  "eslint-plugin-eslint-comments": "^3.2.0",
37
37
  "eslint-plugin-import": "^2.27.5",
38
38
  "eslint-plugin-isaacscript": "^2.6.7",
39
- "eslint-plugin-jsdoc": "^40.0.1",
39
+ "eslint-plugin-jsdoc": "^40.1.0",
40
40
  "eslint-plugin-n": "^15.6.1",
41
41
  "eslint-plugin-no-autofix": "^1.2.3",
42
42
  "eslint-plugin-no-type-assertion": "^1.3.0",
43
43
  "eslint-plugin-only-warn": "^1.1.0",
44
44
  "eslint-plugin-sort-exports": "^0.8.0",
45
45
  "eslint-plugin-unicorn": "^46.0.0",
46
- "prettier": "^2.8.4",
46
+ "prettier": "^2.8.6",
47
47
  "prettier-plugin-organize-imports": "^3.2.2",
48
48
  "ts-prune-2": "^0.10.7"
49
49
  },