-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.check.exs
More file actions
23 lines (20 loc) · 842 Bytes
/
.check.exs
File metadata and controls
23 lines (20 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-FileCopyrightText: 2023 ash_events contributors <https://github.com/ash-project/ash_events/graphs/contributors>
#
# SPDX-License-Identifier: MIT
[
## all available options with default values (see `mix check` docs for description)
# parallel: true,
# skipped: true,
## list of tools (see `mix check` docs for defaults)
tools: [
## curated tools may be disabled (e.g. the check for compilation warnings)
# {:compiler, false},
## ...or adjusted (e.g. use one-line formatter for more compact credo output)
{:format, "mix format --check-formatted"},
{:credo, "mix credo --strict"},
{:check_cheat_sheets, command: "mix spark.cheat_sheets --check"},
{:check_formatter, command: "mix spark.formatter --check"},
{:doctor, false},
{:reuse, command: ["pipx", "run", "reuse", "lint", "-q"]}
]
]