-
Notifications
You must be signed in to change notification settings - Fork 10
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
Remove duplicate error on reviewdog #224
Conversation
795d891
to
2a22f03
Compare
1d12637
to
20ca2f5
Compare
20ca2f5
to
b2f2a2e
Compare
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/command_definitions.h
Outdated
Show resolved
Hide resolved
Examples/minimum_user_for_s2e/src/src_user/TlmCmd/command_definitions.h
Outdated
Show resolved
Hide resolved
なんで2個出るのかと思ったらディレクトリトラバーサル的なことがincludeで起こってるからか.それは一旦しゃあないということにしようかな |
テストコミット消しときます |
b2f2a2e
to
9af7341
Compare
log = s.split(compiler) | ||
if "" in log: | ||
log.remove("") | ||
# print(log) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これ何してるの?
(log って配列だよね.splitしてるし)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
これはログが初手からclang-tidy
で開始してた時に最初に無が入るのでそれを消してます
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あ,なるほどね.確かにそれあると, (cmd, err) = l.split("\n", 1)
で死ぬのか.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
です
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
良さそう
マージします |
概要
同一のファイルに対して同一のエラーが(異なるファイルから)出ている時にreviewdogの出力が重複するのを避ける
Issue
NA
詳細