-
-
Notifications
You must be signed in to change notification settings - Fork 142
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
Fix issue with expecting default ignore file when checking file size #545
Changes from all commits
a8b97ae
667fa25
c849d66
679ac94
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
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 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.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 24.3
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.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 26.1
Check warning on line 1 in test/fixtures/ignore_default_empty/mix.exs GitHub Actions / Elixir 1.13.4 / 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.12.3 / OTP 24.3
|
||
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 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.12.3 / OTP 23.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 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 26.1
Check warning on line 1 in test/fixtures/ignore_empty/mix.exs GitHub Actions / Elixir 1.13.4 / 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.12.3 / OTP 24.3
|
||
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 |
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.
Not sure, but there might be an issue with using the same module name
Ignore.Mixfile
. Maybe you can try changing one of these names, and see if that fixes some of these warnings.