diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-05-26 22:51:31 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-05-30 19:48:53 -0400 |
| commit | d30584270c657dd69231986cbf612c9d60465899 (patch) | |
| tree | acc192a0e955d11c614019a5213b4dd253f34a15 /.prettierignore | |
| parent | 2273b6dce6cb650c0a72b71491421f198518bfb7 (diff) | |
Tidy up `.prettierignore`.
* It no longer mentions files that do not exist in this project.
* It now _does_ mention files that do exist, that `prettier` should never touch, like sqlx's query- metadata JSON files, `package-lock.json`, or our bundled copies of Mermaid.
Diffstat (limited to '.prettierignore')
| -rw-r--r-- | .prettierignore | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.prettierignore b/.prettierignore index ab78a95..325134d 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,10 @@ -# Package Managers +# Project files package-lock.json -pnpm-lock.yaml -yarn.lock +/.sqlx/ +/docs/api/mermaid/ +/target/ + +# IDE-specific files +# +# (There's no local ignores, so it's not practical to separate these out of the project config) +/.nova/ |
