mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
21 lines
302 B
INI
21 lines
302 B
INI
[flake8]
|
|
exclude =
|
|
# Defaults
|
|
.svn,
|
|
CVS,
|
|
.bzr,
|
|
.hg,
|
|
.git,
|
|
__pycache__,
|
|
.tox,
|
|
.idea,
|
|
.mypy_cache,
|
|
.venv,
|
|
node_modules,
|
|
# Custom
|
|
_state_machine.py,
|
|
test_fstring.py,
|
|
bad_coding2.py,
|
|
badsyntax_*.py
|
|
ignore_names = foo, bar
|
|
quotes = double
|