Skip to content

Commit

Permalink
add debug inspect
Browse files Browse the repository at this point in the history
  • Loading branch information
realcorvus committed Dec 19, 2023
1 parent c3169ba commit 3e4de31
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/sobelow.ex
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,7 @@ defmodule Sobelow do

defp load_ignored_fingerprints(project_root) do
cfile = project_root <> @skips
IO.inspect(cfile, label: "Sobelow skips file")

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.7.x | OTP 22.3.4.26)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.8.x | OTP 22.3.4.26)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.9.x | OTP 22.3.4.26)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.10.x | OTP 22.3.4.26)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.11.x | OTP 23.3.4.18)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.12.x | OTP 24)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.13.x | OTP 25.1)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.14.x | OTP 25.1)

There should be no calls to IO.inspect/1.

Check warning on line 487 in lib/sobelow.ex

View workflow job for this annotation

GitHub Actions / mix test (Elixir 1.15.x | OTP 26)

There should be no calls to IO.inspect/1.

if File.exists?(cfile) do
{:ok, iofile} = :file.open(cfile, [:read])
Expand Down

0 comments on commit 3e4de31

Please sign in to comment.