From ede973218059ac070c1283a4372c1fa33cc6e9d9 Mon Sep 17 00:00:00 2001 From: messense Date: Wed, 4 Jan 2023 21:28:03 +0800 Subject: [PATCH] Remove unnecessary ruff excludes --- pyproject.toml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0b1e352a2..b49635a99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,31 +48,3 @@ extend-exclude = ''' [tool.ruff] line-length = 120 target-version = "py37" -exclude = [ - ".bzr", - ".direnv", - ".eggs", - ".git", - ".hg", - ".mypy_cache", - ".nox", - ".pants.d", - ".ruff_cache", - ".svn", - ".tox", - ".venv", - "__pypackages__", - "_build", - "buck-out", - "build", - "dist", - "node_modules", - "venv", - # maturin specific excludes - "venvs", - "target", - "targets", - # auto-generated files - "test-crates/cffi-mixed/cffi_mixed/cffi_mixed/ffi.py", - "test-crates/uniffi-mixed/uniffi_mixed/uniffi_mixed/math.py", -]