Skip to content

Commit 81a81b7

Browse files
author
mjheilmann
committed
add credo config
1 parent 08187da commit 81a81b7

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.credo.exs

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
%{
2+
configs: [
3+
%{
4+
name: "default",
5+
files: %{
6+
included: ["lib", "test"],
7+
excluded: ["lib/proto", "test/support/*"]
8+
},
9+
plugins: [],
10+
requires: [],
11+
strict: false,
12+
parse_timeout: 5000,
13+
color: true
14+
}
15+
]
16+
}

.formatter.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Used by "mix format"
22
[
3-
inputs: ["{mix,.formatter}.exs", "{config,lib,test,examples}/**/*.{ex,exs}"]
3+
inputs: ["{mix,.formatter,.credo}.exs", "{config,lib,test,examples}/**/*.{ex,exs}"]
44
]

0 commit comments

Comments
 (0)