From 3a22c2e02c4d8865f0c39855d7e64fe83b07961c Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Mon, 11 Mar 2024 09:53:07 -0700 Subject: [PATCH] Removed tmpfix from mix check that was waiting for 1.16.2 --- .check.exs | 9 +++------ ideas.md | 2 -- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.check.exs b/.check.exs index ea8f94c..da0bf22 100644 --- a/.check.exs +++ b/.check.exs @@ -9,18 +9,15 @@ fix: true, ## don't retry automatically even if last run resulted in failures - # retry: false, + retry: false, ## list of tools (see `mix check` docs for a list of default curated tools) tools: [ {:compiler, env: %{"MIX_ENV" => "test"}}, {:formatter, env: %{"MIX_ENV" => "test"}}, {:sobelow, "mix sobelow --config"}, - # TODO: delete these and replace them with builtin ex_unit and formatter tools - # once Elixir 1.16.2 is released (see: https://github.com/karolsluszniak/ex_check/issues/41#issuecomment-1921390413) - {:elixir_tests, "mix test"}, - {:elixir_formatting, "mix format --check-formatted", fix: "mix format"}, - {:prettier_formatting, "yarn run prettier . --check", fix: "yarn run prettier . --write"} + {:prettier_formatting, "yarn run prettier . --check", fix: "yarn run prettier . --write"}, + {:npm_test, false} ## curated tools may be disabled (e.g. the check for compilation warnings) # {:compiler, false}, diff --git a/ideas.md b/ideas.md index 93f1859..ac5addc 100644 --- a/ideas.md +++ b/ideas.md @@ -2,5 +2,3 @@ - Use a UUID for the media database ID (or at least alongside it) - Look into this and its recommended plugins https://hexdocs.pm/ex_check/readme.html - Add output template option for the source's friendly name -- TODO: Install Elixir 1.16.2 when available to fix bug with `ex_check` https://github.com/karolsluszniak/ex_check/issues/41#issuecomment-1921390413 - - delete `{:elixir_tests, "mix test"}` and formatting check