You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with a few exceptions, all of which do not apply in the following example (both files have a [tool.ruff] section, --config is not used, a config file is found in the filesystem hierarchy, and nothing is provided on the command line at all).
warning: `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible. Ignoring `one-blank-line-before-class`.
warning: `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible. Ignoring `multi-line-summary-second-line`.
although one of each pair of rules is clearly disabled in bug1/bug2/pyproject.toml.
rm ../pyproject.toml
ruff .
works fine, suggesting that the presence of the parent config does play a role although it should not.
ruff 0.1.5
The text was updated successfully, but these errors were encountered:
The docs read:
with a few exceptions, all of which do not apply in the following example (both files have a
[tool.ruff]
section,--config
is not used, a config file is found in the filesystem hierarchy, and nothing is provided on the command line at all).Still,
gives
although one of each pair of rules is clearly disabled in
bug1/bug2/pyproject.toml
.rm ../pyproject.toml ruff .
works fine, suggesting that the presence of the parent config does play a role although it should not.
ruff 0.1.5
The text was updated successfully, but these errors were encountered: