mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-22 03:15:44 +00:00
33 lines
658 B
Python
33 lines
658 B
Python
def bad_function():
|
|
"""this docstring is not capitalized"""
|
|
|
|
def good_function():
|
|
"""This docstring is capitalized."""
|
|
|
|
def other_function():
|
|
"""
|
|
This docstring is capitalized."""
|
|
|
|
def another_function():
|
|
""" This docstring is capitalized."""
|
|
|
|
def utf8_function():
|
|
"""éste docstring is capitalized."""
|
|
|
|
def uppercase_char_not_possible():
|
|
"""'args' is not capitalized."""
|
|
|
|
def non_alphabetic():
|
|
"""th!is is not capitalized."""
|
|
|
|
def non_ascii():
|
|
"""th•s is not capitalized."""
|
|
|
|
def all_caps():
|
|
"""th•s is not capitalized."""
|
|
|
|
def single_word():
|
|
"""singleword."""
|
|
|
|
def single_word_no_dot():
|
|
"""singleword"""
|