Skip to content

Commit

Permalink
WIP fix ava thingie
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvisut committed Feb 12, 2025
1 parent b074c4b commit 9c6a428
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parser": "@typescript-eslint/parser",
"extends": ["next/core-web-vitals", "plugin:storybook/recommended"],
"extends": ["next", "next/core-web-vitals", "plugin:storybook/recommended"],
"ignorePatterns": ["*.json"],
"overrides": [
{
Expand Down
1 change: 0 additions & 1 deletion package-lock.json

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

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,17 @@
"type-css": "npx tcm src",
"type-css:watch": "npx tcm src --watch",
"type-css:check": "npx tcm src --listDifferent",
"test": "next build --no-lint && ava",
"test": "ava",
"test-storybook": "test-storybook --maxWorkers=2",
"db:migrate": "npx tsx src/backend/scripts/migrate-database.ts",
"db:reset": "npx tsx src/backend/scripts/reset-database.ts",
"db:seed": "npx tsx src/backend/scripts/seed-database.ts",
"prepare": "husky",
"postinstall": "next build --no-lint && npm run type-css",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"format:version": "prettier --version",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky",
"all:check": "npm run type:check && npm run type-css:check && npm run lint && npm run format:check && npm run test",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
Expand Down

0 comments on commit 9c6a428

Please sign in to comment.