PaulTaykalo/swift-scripts

Item is unused when it's followed by a comment

grifas opened this issue · 0 comments

The script detects an unused item when I return the result of a function with a comment at the same line:

Here an example:

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    return getCell() // Bla bla bla
}