Despite many Python files existing in subdirectories of the current directory, none are found.
$ ruff --version
ruff 0.0.282
$ ruff --isolated .
warning: No Python files found under the given path(s)
$ ls bin/
monophony.py
$ bat pyproject.toml
───────┬───────────────────────────────────────────────────────────────────────────────────────────────────
1 │ [tool.ruff]
2 │ builtins = ['_']
3 │ extend-ignore = ['E4', 'E74', 'E722']
4 │ extend-select = ['ARG', 'Q']
5 │ #tab_size = 4
6 │
7 │ [tool.ruff.flake8-quotes]
8 │ inline-quotes = 'single'
9 │ docstring-quotes = 'single'
10 │ multiline-quotes = 'single'
───────┴───────────────────────────────────────────────────────────────────────────────────────────────────
Despite many Python files existing in subdirectories of the current directory, none are found.