Skip to content

Commit b0921c3

Browse files
committed
feat: consolidated prettier config
1 parent 500c6cb commit b0921c3

File tree

76 files changed

+160
-763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+160
-763
lines changed

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"editor.defaultFormatter": "rust-lang.rust-analyzer"
2323
},
2424
"[svelte]": {
25-
"editor.defaultFormatter": "svelte.svelte-vscode"
25+
"editor.defaultFormatter": "esbenp.prettier-vscode"
2626
},
2727
"[typescript]": {
2828
"editor.defaultFormatter": "esbenp.prettier-vscode"
@@ -121,6 +121,7 @@
121121
],
122122
"svelte.enable-ts-plugin": true,
123123
"terminal.integrated.windowsEnableConpty": true,
124+
"prettier.documentSelectors": ["**/*.svelte"],
124125
"vitest.commandLine": "npx vitest --coverage",
125126
"vitest.enable": true
126127
}

apps/svelte-example-app/.prettierrc.js

-10
This file was deleted.

apps/svelte-example-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
1919
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2020
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
21-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
21+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
2222
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
2323
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
2424
"lint:style": "turbo run lint:style_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
@@ -35,7 +35,7 @@
3535
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
3636
"dev": "concurrently npm:watch-deps npm:start",
3737
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",
38-
"format_": "prettier --cache-location .cache/prettier --write .",
38+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
3939
"postinstall": "svelte-kit sync # pakk:no-publish",
4040
"start": "TARGET_ENV='local' vite",
4141
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/svelte-example-app",

apps/svelte-example-app/src/routes/+layout.svelte

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<script lang="ts">
2-
3-
// Finally, your application's global stylesheet (sometimes labeled 'app.css')
4-
import '../app.postcss';
2+
// Finally, your application's global stylesheet (sometimes labeled 'app.css')
3+
import '../app.postcss';
54
// Most of your app wide CSS should be put in this file
65
import { AppBar, AppShell } from '@skeletonlabs/skeleton';
76
import packageJson from '../../../../package.json';
8-
97
</script>
108

119
<AppShell>

apps/svelte-example-app/src/routes/+page.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { Hello } from '@alexaegis/example-svelte-lib';
33
// import Direct from '@alexaegis/example-svelte-lib/direct'; // TODO: since the typedefs are only available for svelte libs after packaging, make build a dependency of lint:svelte
44
</script>
5+
56
<div class="card m-12">
67
<header class="card-header">
78
<h1 class="h1">
@@ -20,7 +21,7 @@
2021
</p>
2122
</section>
2223
<section class="p-4">
23-
<Hello name='example app'></Hello>
24+
<Hello name="example app"></Hello>
2425
<!-- <Direct ></Direct> -->
2526
</section>
2627
</div>

libs/example-svelte-lib/.prettierrc.js

-5
This file was deleted.

libs/example-svelte-lib/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
2020
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2121
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
22-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
22+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
2323
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
2424
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
2525
"lint:style": "turbo run lint:style_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
@@ -36,7 +36,7 @@
3636
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
3737
"dev": "concurrently npm:watch-deps npm:start",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"preview": "vite preview",
4141
"start": "TARGET_ENV='local' vite",
4242
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-svelte-lib",

libs/example-svelte-lib/src/direct.svelte

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<h1>I'm part of the package API {name}</h1>
88

99
<Hello name="direct hello"></Hello>
10+
1011
<style>
1112
h1 {
1213
color: azure;

libs/example-ts-lib/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
2929
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
3030
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
31-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
31+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3232
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
3333
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3434
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
3535
"lint:tsc_": "tsc --noEmit",
3636
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
3737
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
38-
"format_": "prettier --cache-location .cache/prettier --write .",
38+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
3939
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/example-ts-lib",
4040
"test_": "vitest --passWithNoTests --coverage --run",
4141
"test:watch": "vitest --passWithNoTests --coverage"

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"lint:depcheck_": "depcheck",
5353
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo",
5454
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo",
55-
"lint:format_": "prettier --cache-location .cache/prettier --ignore-path .config/workspace-only.prettierignore --check .",
55+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --ignore-path .config/workspace-only.prettierignore --check .",
5656
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo",
5757
"lint:md_": "remark --frail --no-stdout --silently-ignore --ignore-pattern packages --ignore-pattern libs --ignore-pattern apps .",
5858
"lint:style": "turbo run lint:style_ --concurrency 16 --cache-dir .cache/turbo",
@@ -64,7 +64,7 @@
6464
"publint": "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo",
6565
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo",
6666
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo",
67-
"format_": "prettier --cache-location .cache/prettier --ignore-path .config/workspace-only.prettierignore --write .",
67+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --ignore-path .config/workspace-only.prettierignore --write .",
6868
"ncu": "ncu --configFilePath ./.config/ && pnpm up",
6969
"nuke": "nuke",
7070
"postinstall": "husky install && turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/eslint-config* --filter @alexaegis/prettier-config* --filter @alexaegis/autotool-plugin-* && autotool",

packages/autotool-plugin-commitlint/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
2727
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2828
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
29-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
29+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3030
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
3131
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3232
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
@@ -35,7 +35,7 @@
3535
"publint_": "publint dist",
3636
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
3737
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
38-
"format_": "prettier --cache-location .cache/prettier --write .",
38+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
3939
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-commitlint",
4040
"test_": "vitest --passWithNoTests --coverage --run",
4141
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-depcheck/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-depcheck",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-editorconfig/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-editorconfig",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-eslint/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-eslint",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-git/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-git",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-github/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-github",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

packages/autotool-plugin-husky/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
2828
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
2929
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
30-
"lint:format_": "prettier --cache-location .cache/prettier --check .",
30+
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
3131
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
3232
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
3333
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
@@ -36,7 +36,7 @@
3636
"publint_": "publint dist",
3737
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
3838
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
39-
"format_": "prettier --cache-location .cache/prettier --write .",
39+
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
4040
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-husky",
4141
"test_": "vitest --passWithNoTests --coverage --run",
4242
"test:watch": "vitest --passWithNoTests --coverage"

0 commit comments

Comments
 (0)