-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
defmodule Ignore.Mixfile do | ||
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.12.3 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.13.4 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.13.4 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.12.3 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 26.1
|
||
use Mix.Project | ||
|
||
def project do | ||
[ | ||
app: :ignore, | ||
version: "0.1.0", | ||
prune_code_paths: false, | ||
dialyzer: [ | ||
list_unused_filters: true | ||
] | ||
] | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
defmodule Ignore.Mixfile do | ||
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.12.3 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.13.4 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.13.4 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 24.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.14.3 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 25.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.12.3 / OTP 23.3
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.15.7 / OTP 26.1
|
||
use Mix.Project | ||
|
||
def project do | ||
[ | ||
app: :ignore, | ||
version: "0.1.0", | ||
prune_code_paths: false, | ||
dialyzer: [ | ||
ignore_warnings: "ignore_empty_test.exs", | ||
list_unused_filters: true | ||
] | ||
] | ||
end | ||
end |