forked from supabase/realtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.credo.exs
More file actions
28 lines (28 loc) · 730 Bytes
/
.credo.exs
File metadata and controls
28 lines (28 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%{
configs: [
%{
name: "default",
files: %{
included: ["lib/", "src/", "web/", "apps/"],
excluded: []
},
plugins: [],
requires: [],
strict: false,
parse_timeout: 5000,
color: true,
checks: %{
disabled: [
{Credo.Check.Design.TagTODO, []},
{Credo.Check.Consistency.ExceptionNames, []},
{Credo.Check.Refactor.Nesting, []},
{Credo.Check.Refactor.CyclomaticComplexity, []},
{Credo.Check.Readability.WithSingleClause, []},
{Credo.Check.Readability.AliasOrder, []},
{Credo.Check.Readability.StringSigils, []},
{Credo.Check.Refactor.Apply, []}
]
}
}
]
}