Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import eslintConfigLove from "eslint-config-love";
import eslintPluginRegexp from "eslint-plugin-regexp";
import eslintPluginVitest from "@vitest/eslint-plugin";

/**
* @type {import("eslint").Linter.Config[]}
Expand Down Expand Up @@ -33,7 +34,10 @@ export default [
},
{
files: ["**/*.spec.ts"],
plugins: { vitest: eslintPluginVitest },
rules: {
...eslintPluginVitest.configs.recommended.rules,
"vitest/no-conditional-expect": "warn",
"max-lines": "off",
},
},
Expand Down
196 changes: 0 additions & 196 deletions jest.config.ts

This file was deleted.

13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"format": "prettier --write .",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"test": "jest"
"test": "vitest run"
},
"repository": {
"type": "git",
Expand All @@ -32,24 +32,21 @@
"result-type-ts": "2.2.0"
},
"devDependencies": {
"@actions/core": "2.0.3",
"@actions/core": "3.0.0",
"@octokit/webhooks-examples": "7.6.1",
"@octokit/webhooks-types": "7.6.1",
"@types/jest": "30.0.0",
"@types/lodash.template": "4.5.3",
"@types/node": "24.10.13",
"@vercel/ncc": "0.38.4",
"@vitest/eslint-plugin": "1.6.9",
"all-contributors-cli": "6.26.1",
"eslint": "9.39.2",
"eslint-config-love": "151.0.0",
"eslint-plugin-regexp": "3.0.0",
"husky": "9.1.7",
"jest": "30.2.0",
"jest-mock": "30.2.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"volta": {
"node": "24.13.1",
Expand Down
Loading
Loading