isaacscript-lint 1.0.74 → 1.0.78

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/.gitattributes CHANGED
@@ -1,2 +1,9 @@
1
1
  # Prevent Windows systems from cloning this repository with "\r\n" line endings
2
2
  core.autocrlf=false
3
+
4
+ # Prevent people from making merge commits
5
+ # https://www.endoflineblog.com/gitflow-considered-harmful
6
+ pull.rebase=true
7
+
8
+ # Convert all files to use "\n" line endings
9
+ * text=auto eol=lf
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-lint",
3
- "version": "1.0.74",
3
+ "version": "1.0.78",
4
4
  "description": "An updatable linting dependency container for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,28 +9,28 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "dependencies": {
12
- "@typescript-eslint/eslint-plugin": "^5.6.0",
13
- "@typescript-eslint/parser": "^5.6.0",
14
- "cspell": "^5.13.3",
15
- "eslint": "^8.4.1",
12
+ "@typescript-eslint/eslint-plugin": "^5.9.0",
13
+ "@typescript-eslint/parser": "^5.9.0",
14
+ "cspell": "^5.15.1",
15
+ "eslint": "^8.6.0",
16
16
  "eslint-config-airbnb-base": "^15.0.0",
17
17
  "eslint-config-airbnb-typescript": "^16.1.0",
18
18
  "eslint-config-isaacscript": "^1.0.54",
19
19
  "eslint-config-prettier": "^8.3.0",
20
20
  "eslint-plugin-eqeqeq-fix": "^1.0.3",
21
21
  "eslint-plugin-eslint-comments": "^3.2.0",
22
- "eslint-plugin-import": "^2.25.3",
23
- "eslint-plugin-jsdoc": "^37.2.0",
22
+ "eslint-plugin-import": "^2.25.4",
23
+ "eslint-plugin-jsdoc": "^37.6.1",
24
24
  "eslint-plugin-no-implicit-map-set-loops": "^1.0.3",
25
25
  "eslint-plugin-no-template-curly-in-string-fix": "^1.0.4",
26
26
  "eslint-plugin-no-void-return-type": "^1.0.2",
27
27
  "eslint-plugin-only-warn": "^1.0.3",
28
- "isaacscript-tsconfig": "^1.1.7",
28
+ "isaacscript-tsconfig": "^1.1.8",
29
29
  "prettier": "^2.5.1",
30
30
  "prettier-plugin-organize-imports": "^2.3.4",
31
- "ts-prune": "^0.10.2"
31
+ "ts-prune": "^0.10.3"
32
32
  },
33
33
  "peerDependencies": {
34
- "typescript": "4.4.4"
34
+ "typescript": "^4.4.4"
35
35
  }
36
36
  }
package/update.sh CHANGED
@@ -10,7 +10,7 @@ cd "$DIR"
10
10
 
11
11
  PACKAGE_JSON="$DIR/package.json"
12
12
  OLD_HASH=$(md5sum "$PACKAGE_JSON")
13
- npx npm-check-updates --upgrade --packageFile "$PACKAGE_JSON" --reject typescript
13
+ npx npm-check-updates --upgrade --packageFile "$PACKAGE_JSON"
14
14
  NEW_HASH=$(md5sum "$PACKAGE_JSON")
15
15
  if [[ $OLD_HASH != $NEW_HASH ]]; then
16
16
  npm install