Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Prettier husky #415

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

npx lint-staged

npx prettier --ignore-path .gitignore --check --plugin prettier-plugin-svelte .
npx prettier --ignore-path .prettierignore --check --plugin prettier-plugin-svelte .
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Ignoring CHANGELOG.md because it will get overwritten by the next release. We can commit it, but the changes won't be durable.
CHANGELOG.md
/CHANGELOG.md
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@

## [2.19.10](https://github.com/EddieHubCommunity/good-first-issue-finder/compare/v2.19.9...v2.19.10) (2024-06-29)

### Bug Fixes

### Bug Fixes

* k8s kubescape no longer required ([fdd1f6b](https://github.com/EddieHubCommunity/good-first-issue-finder/commit/fdd1f6b24688e9ebe30a467c67304bbe26eda68a))




## [2.19.9](https://github.com/EddieHubCommunity/good-first-issue-finder/compare/v2.19.8...v2.19.9) (2024-06-29)

### Bug Fixes

### Bug Fixes

* k8s no longer required ([5a5bd4a](https://github.com/EddieHubCommunity/good-first-issue-finder/commit/5a5bd4ab4f7c360ca2f4f1a132297689abbc115d))

Expand All @@ -35,8 +34,9 @@

### Bug Fixes


* caprover config ([38521e0](https://github.com/EddieHubCommunity/good-first-issue-finder/commit/38521e035edc251675ad28f5914aac477c4c5fae))





Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please ignore this file as it is auto generated

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin prettier-plugin-svelte . ; eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin prettier-plugin-svelte .",
"lint": "prettier --ignore-path .prettierignore --check --plugin prettier-plugin-svelte . ; eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .prettierignore --write --plugin prettier-plugin-svelte .",
"validate": "npx svelte-check --fail-on-warnings",
"prepare": "husky install",
"test": "playwright test",
Expand Down
Loading