mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-29 19:17:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			568 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			568 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."""
 | 
