Skip to content

Commit

Permalink
chore: Move some entries from .prettyignore to .gitignore (#4461)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored May 6, 2024
1 parent 1b240a8 commit d0e6da6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,10 @@ _*.sql
cobertura.xml
codecov.json
.envrc

# Some paths we don't want to include. We could ignore these further down the
# tree, but prettier relies on this file rather than resolving all the way down.
**/.venv
**/.nox
**/vendor
.mypy_cache/
9 changes: 4 additions & 5 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# prettier respects the root `.gitignore` file, so prefer that for files which
# we also want to ignore from our version control. This should contain files we
# want to track but not format.

**/*.rs
**/*.min.*

Expand All @@ -11,8 +15,3 @@

# TODO: fix the go-template issue in `.prettierrc.yaml`
**/*.html

# A few large, ignored dirs
target/
**/dist/*
.mypy_cache/

0 comments on commit d0e6da6

Please sign in to comment.