mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00

## Summary Implements the [blank line at end of file](https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes) rule (W391) from pycodestyle. Renamed to TooManyNewlinesAtEndOfFile for clarity. ## Test Plan New fixtures have been added Part of #2402
17 lines
128 B
Python
17 lines
128 B
Python
# Windows style
|
|
def foo() -> None:
|
|
pass
|
|
|
|
|
|
def bar() -> None:
|
|
pass
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
foo()
|
|
bar()
|
|
|
|
|
|
|
|
|