Skip to content

Commit

Permalink
improvement: bring code up to date and add linters, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimsynz committed Jul 27, 2023
1 parent 01a0089 commit 2993639
Show file tree
Hide file tree
Showing 78 changed files with 835 additions and 439 deletions.
33 changes: 33 additions & 0 deletions .check.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[
## don't run tools concurrently
# parallel: false,

## don't print info about skipped tools
skipped: false,

## always run tools in fix mode (put it in ~/.check.exs locally, not in project config)
# fix: true,

## don't retry automatically even if last run resulted in failures
# retry: false,

## list of tools (see `mix check` docs for a list of default curated tools)
tools: [
## curated tools may be disabled (e.g. the check for compilation warnings)
# {:compiler, false},

## ...or have command & args adjusted (e.g. enable skip comments for sobelow)
{:sobelow, false},

## ...or reordered (e.g. to see output from dialyzer before others)
# {:dialyzer, order: -1},

## ...or reconfigured (e.g. disable parallel execution of ex_unit in umbrella)
# {:ex_unit, umbrella: [parallel: false]},

## custom new tools may be added (Mix tasks or arbitrary commands)
# {:my_task, "mix my_task", env: %{"MIX_ENV" => "prod"}},
# {:my_tool, ["my_tool", "arg with spaces"]}
# {:esbuild, "mix esbuild prod"}
]
]
145 changes: 0 additions & 145 deletions .credo.exs

This file was deleted.

Loading

0 comments on commit 2993639

Please sign in to comment.