isaacscript-lint 4.2.0 → 4.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 +1 -1
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -42,7 +42,7 @@ The root of the problem here is that when people try out a new programming langu
42
42
 
43
43
  In JavaScript and TypeScript land, there isn't a unifying standard like there is in Go, but we can get close.
44
44
 
45
- Historically, the the most popular style guide is the world is the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript). ([Google's Style Guide](https://google.github.io/styleguide/jsguide.html) and [StandardJS](https://standardjs.com/) are also notable, but don't seem quite as popular.) Thus, we chose Airbnb as a base for new JavaScript and TypeScript projects.
45
+ Historically, the most popular style guide is the world is the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript). ([Google's Style Guide](https://google.github.io/styleguide/jsguide.html) and [StandardJS](https://standardjs.com/) are also notable, but don't seem quite as popular.) Thus, we chose Airbnb as a base for new JavaScript and TypeScript projects.
46
46
 
47
47
  ESLint is the industry standard tool for linting in JavaScript and TypeScript. Airbnb helpfully provides an ESLint configuration with most of their style recommendations. ESLint can function in a way similar to `gofmt` by configuring your text editor to do `eslint --fix` on save. However, this has a lot of limitations. It can't automatically fix everything and leaves a lot up to the end user to fix.
48
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "description": "A linting dependency meta-package for IsaacScript and TypeScript projects.",
5
5
  "keywords": [
6
6
  "isaacscript",
@@ -22,24 +22,24 @@
22
22
  "type": "commonjs",
23
23
  "dependencies": {
24
24
  "@prettier/plugin-xml": "^2.2.0",
25
- "@typescript-eslint/eslint-plugin": "^5.36.2",
26
- "@typescript-eslint/parser": "^5.36.2",
27
- "cspell": "^6.8.1",
28
- "eslint": "^8.23.0",
25
+ "@typescript-eslint/eslint-plugin": "^5.47.1",
26
+ "@typescript-eslint/parser": "^5.47.1",
27
+ "cspell": "^6.18.0",
28
+ "eslint": "^8.30.0",
29
29
  "eslint-config-airbnb-base": "^15.0.0",
30
30
  "eslint-config-airbnb-typescript": "^17.0.0",
31
31
  "eslint-config-isaacscript": "^3.1.2",
32
32
  "eslint-config-prettier": "^8.5.0",
33
33
  "eslint-plugin-eslint-comments": "^3.2.0",
34
34
  "eslint-plugin-import": "^2.26.0",
35
- "eslint-plugin-isaacscript": "^1.5.3",
36
- "eslint-plugin-jsdoc": "^39.3.6",
35
+ "eslint-plugin-isaacscript": "^1.5.4",
36
+ "eslint-plugin-jsdoc": "^39.6.4",
37
37
  "eslint-plugin-no-type-assertion": "^1.3.0",
38
- "eslint-plugin-only-warn": "^1.0.3",
39
- "eslint-plugin-sort-exports": "^0.7.0",
40
- "prettier": "^2.7.1",
41
- "prettier-plugin-organize-imports": "^3.1.1",
42
- "ts-prune": "^0.10.3"
38
+ "eslint-plugin-only-warn": "^1.1.0",
39
+ "eslint-plugin-sort-exports": "^0.8.0",
40
+ "prettier": "^2.8.1",
41
+ "prettier-plugin-organize-imports": "^3.2.1",
42
+ "ts-prune-2": "^0.10.7"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "typescript": ">= 4.0.0"