-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cppcheck の結果を見やすく整形する #368
Comments
参照用の xslt ってcppchekの開発元では共有されてないんですか? |
極力デフォルトってことならば、 https://teratail.com/questions/66917 PowerShellっすかね。 |
appveyor で整形して出したいと思ったのですが、 |
visual studio の「エラー一覧」に出せると、 これどうですかね https://marketplace.visualstudio.com/items?itemName=Alexium.Cppcheckadd-in |
SonarQubeとCppcheckを連携させる |
関連 #674 |
新しいバージョンのCppcheckならば、結果をHTMLで出せるようです。 |
このブログで紹介されている設定項目がSonarCloudだと見つかりませんでした。 |
vs2017対応で取り込み済み。 https://github.com/sakura-editor/sakura/blob/master/parse-buildlog.py 結局、ログ整形しても修正対応しないなら整形する意味はなくね?の一言に尽きると思っていて。 ということで一旦閉じてしまいます。 必要あれば新たにissue立ててください。 |
cppcheck の結果を見やすく整形したい。
現状では cppcheck は xml 形式で出力されているが、そのままでは結果を確認するのは困難なので
人が見て理解できる形式に整形して出力したい。
参考
https://github.com/danmar/cppcheck/tree/master/htmlreport
で以下コマンドを実行することにより、 html 化できる。
(ただ cppcheck のインストーラには含まれていないので cppcheck を clone する必要がある)
python <path_to_script>\cppcheck-htmlreport --report-dir=<出力先ディレクトリ> --file=<xml ファイル名>
事前準備
pip install --user pygments
The text was updated successfully, but these errors were encountered: