File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Credo.Check.Design.SkipTestWithoutComment do
3
3
id: "EX2003" ,
4
4
base_priority: :normal ,
5
5
param_defaults: [
6
- files: % { included: [ "test/ **/*_test.exs" ] }
6
+ files: % { included: [ "**/*_test.exs" ] }
7
7
] ,
8
8
explanations: [
9
9
check: """
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Credo.Check.Refactor.PassAsyncInTestCases do
3
3
id: "EX4031" ,
4
4
base_priority: :normal ,
5
5
param_defaults: [
6
- files: % { included: [ "test/ **/*_test.exs" ] }
6
+ files: % { included: [ "**/*_test.exs" ] }
7
7
] ,
8
8
explanations: [
9
9
check: """
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ defmodule Credo.Check.Warning.WrongTestFileExtension do
3
3
id: "EX5025" ,
4
4
base_priority: :high ,
5
5
param_defaults: [
6
- files: % { included: [ "test/ **/*_test.ex" ] }
6
+ files: % { included: [ "**/*_test.ex" ] }
7
7
] ,
8
8
explanations: [
9
9
check: """
You can’t perform that action at this time.
0 commit comments