Skip to content

Commit

Permalink
Fix last commit for files in lib
Browse files Browse the repository at this point in the history
Refs #1133
  • Loading branch information
rrrene committed Jun 2, 2024
1 parent 980f56e commit 04fca3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/credo/check/design/skip_test_without_comment.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Credo.Check.Design.SkipTestWithoutComment do
id: "EX2003",
base_priority: :normal,
param_defaults: [
files: %{included: ["**/*_test.exs"]}
files: %{included: ["test/**/*_test.exs", "apps/**/test/**/*_test.exs"]}
],
explanations: [
check: """
Expand Down
2 changes: 1 addition & 1 deletion lib/credo/check/refactor/pass_async_in_test_cases.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Credo.Check.Refactor.PassAsyncInTestCases do
id: "EX4031",
base_priority: :normal,
param_defaults: [
files: %{included: ["**/*_test.exs"]}
files: %{included: ["test/**/*_test.exs", "apps/**/test/**/*_test.exs"]}
],
explanations: [
check: """
Expand Down
2 changes: 1 addition & 1 deletion lib/credo/check/warning/wrong_test_file_extension.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Credo.Check.Warning.WrongTestFileExtension do
id: "EX5025",
base_priority: :high,
param_defaults: [
files: %{included: ["**/*_test.ex"]}
files: %{included: ["test/**/*_test.ex", "apps/**/test/**/*_test.ex"]}
],
explanations: [
check: """
Expand Down

0 comments on commit 04fca3f

Please sign in to comment.