diff options
| author | Fuwn <[email protected]> | 2026-01-23 02:17:00 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-23 02:17:00 -0800 |
| commit | 43c23a36add97aecf77b163c35b8ebc924783ec4 (patch) | |
| tree | 30ef60f66f18112bbe99ddac74436310459e31db | |
| parent | refactor(layout): Replace empty p elements with reusable Spacer component (diff) | |
| download | due.moe-43c23a36add97aecf77b163c35b8ebc924783ec4.tar.xz due.moe-43c23a36add97aecf77b163c35b8ebc924783ec4.zip | |
chore(prettier): Remove deprecated pluginSearchDirs option
| -rw-r--r-- | .prettierrc | 1 | ||||
| -rw-r--r-- | package.json | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.prettierrc b/.prettierrc index 206e0429..0580f3e9 100644 --- a/.prettierrc +++ b/.prettierrc @@ -4,6 +4,5 @@ "trailingComma": "none", "printWidth": 100, "plugins": ["prettier-plugin-svelte"], - "pluginSearchDirs": ["."], "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] } diff --git a/package.json b/package.json index be27732f..2419871c 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "lint": "prettier --plugin-search-dir . --check . && eslint .", - "format": "prettier --plugin-search-dir . --write ." + "lint": "prettier --check . && eslint .", + "format": "prettier --write ." }, "trigger.dev": { "endpointId": "proj_jpvyydwtsyyknzufswcs" |