Reports docstrings that do not adhere to the triple double-quoted string format.

Example:


def calc(self, balance=0):
    'param: balance'
    self.balance = balance

When the quick-fix is applied, the code changes to:


def calc(self, balance=0):
    """param: balance"""
    self.balance = balance