lintspec 0.12.2

A blazingly fast linter for NatSpec comments in Solidity code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;

/// @title StringUtils
library StringUtils {
    function nothing(string memory input) public pure returns (string memory) {
        return input;
    }
}

contract BasicSample {
    using StringUtils for string;
}