Skip to content

Commit

Permalink
chore: update isaacscript
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamiell committed Nov 10, 2024
1 parent 1fda2f1 commit 1011f9c
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 34 deletions.
15 changes: 13 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Prevent Windows systems from cloning this repository with "\r\n" line endings.
# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreautocrlf
# Default value: input
# Explicitly setting it to false prevents Git from changing line endings at any point, which can
# prevent issues when Windows users collaborate with MacOS/Linus users.
core.autocrlf=false

# Prevent people from making merge commits:
# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-coreignoreCase
# Default value: false (on Linux machines) or true (on Windows machines)
# Explicitly setting it to false prevents the issue where Windows users cannot pull down
# casing-related file renames.
core.ignoreCase=false

# https://git-scm.com/docs/git-config/#Documentation/git-config.txt-pullrebase
# Default value: false
# Setting this prevents spurious merge commits:
# https://www.endoflineblog.com/gitflow-considered-harmful
pull.rebase=true

Expand Down
12 changes: 7 additions & 5 deletions knip.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@

/** @type {import("knip").KnipConfig} */
const config = {
ignore: ["eslint.config.mjs", "prettier.config.mjs"],
ignoreDependencies: [
"complete-lint", // This is a linting meta-package.
"complete-node", // This is provided by "complete-lint".
"complete-tsconfig", // This is provided by "complete-lint".
ignore: [
"eslint.config.mjs", // ESLint is provided by "complete-lint".
"prettier.config.mjs", // Prettier is provided by "complete-lint".
],
ignoreBinaries: [
"tsx", // This is provided by "complete-lint".
],
ignoreDependencies: [
"complete-lint", // This is a linting meta-package.
"complete-tsconfig", // This is provided by "complete-lint".
],
};

export default config;
82 changes: 56 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"complete-lint": "^1.9.0",
"git-pull-run": "^1.4.0",
"husky": "^9.1.6",
"isaacscript": "^5.0.3",
"isaacscript": "^5.2.3",
"jest": "^29.7.0",
"prettier-plugin-go-template": "^0.0.15",
"stacktracify": "^1.0.4",
Expand Down

0 comments on commit 1011f9c

Please sign in to comment.