cpplint.py を使用する C++ では、次の// NOLINT
フレーズを使用して a のスタイルチェッカーをミュートできます。
// Some C++ code that conflicts the styleguidelines:
void funtionWithNonConstReferenceArgument(int& A); // NOLINT
その後、スタイルチェッカーはこの行を無視します。Javaのcheckstyleに相当するものはありますか?
cpplint.py を使用する C++ では、次の// NOLINT
フレーズを使用して a のスタイルチェッカーをミュートできます。
// Some C++ code that conflicts the styleguidelines:
void funtionWithNonConstReferenceArgument(int& A); // NOLINT
その後、スタイルチェッカーはこの行を無視します。Javaのcheckstyleに相当するものはありますか?