Exclude .ruff_cache by default (#207)

This commit is contained in:
Charlie Marsh 2022-09-15 20:39:39 -04:00 committed by GitHub
parent 0091a3ae5f
commit 4ac4e8c991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ static DEFAULT_EXCLUDE: Lazy<Vec<Pattern>> = Lazy::new(|| {
Pattern::new(".mypy_cache").unwrap(),
Pattern::new(".nox").unwrap(),
Pattern::new(".pants.d").unwrap(),
Pattern::new(".ruff_cache").unwrap(),
Pattern::new(".svn").unwrap(),
Pattern::new(".tox").unwrap(),
Pattern::new(".venv").unwrap(),