osmo-ci/lint
Oliver Smith ec43684471 lint: checkpatch_osmo: ignore TRAILING_STATEMENTS
In Osmocom code, we have the following written in one line:
  while (osmo_select_main_ctx(1) > 0);

This currently causes the following linter error:
  ERROR:TRAILING_STATEMENTS: trailing statements should be on next line

According to the linter, we should write it as follows:
  while (osmo_select_main_ctx(1) > 0)
  	;

But this is not followed in Osmocom code, so let's ignore the check.

Related: OS#5087
Change-Id: Iaffe979b771c97c77edaf4aa0d232cb8939d1279
2021-11-09 11:48:01 +01:00
..
checkpatch lint: checkpatch_osmo: ignore TRAILING_STATEMENTS 2021-11-09 11:48:01 +01:00
lint_all.sh lint: add helper scripts 2021-06-16 16:49:47 +02:00
lint_diff.sh lint: add helper scripts 2021-06-16 16:49:47 +02:00