-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.quality.exs
More file actions
51 lines (43 loc) · 1.12 KB
/
.quality.exs
File metadata and controls
51 lines (43 loc) · 1.12 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Quality Configuration
#
# This file allows you to customize the behavior of `mix quality`.
#
# Configuration is merged in this order (later wins):
# 1. Defaults
# 2. Auto-detected tool availability
# 3. This file (.quality.exs)
# 4. CLI arguments (--quick, --skip-*, etc.)
[
# Global options
# quick: false, # Skip dialyzer and coverage enforcement
# Compilation options
# compile: [
# warnings_as_errors: true
# ],
# Credo static analysis
# credo: [
# enabled: :auto, # :auto | true | false
# strict: true,
# all: false
# ],
# Dialyzer type checking
# dialyzer: [
# enabled: :auto # :auto | true | false
# ],
# Doctor documentation coverage
# doctor: [
# enabled: :auto, # :auto | true | false
# summary_only: false
# ],
# Gettext translation completeness
# gettext: [
# enabled: :auto # :auto | true | false
# ],
# Dependencies (unused deps and security audit)
# dependencies: [
# enabled: :auto,
# check_unused: true,
# audit: :auto # Requires mix_audit package
# ]
# Note: Coverage threshold is configured in coveralls.json or mix.exs
]