A set of utilities for working with the AT Protocol in Elixir.

ci: mute credo exit code

ovyerus.com d194d488 173eac55

verified
Changed files
+12 -2
.github
workflows
+10
.credo.exs
··· 1 + %{ 2 + configs: [ 3 + %{ 4 + name: "default", 5 + checks: %{ 6 + disabled: [{Credo.Check.Design.TagTODO, []}] 7 + } 8 + } 9 + ] 10 + }
+1 -1
.formatter.exs
··· 1 1 # Used by "mix format" 2 2 [ 3 - inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"], 3 + inputs: ["{mix,.formatter,.credo}.exs", "{config,lib,test}/**/*.{ex,exs}"], 4 4 import_deps: [:typedstruct] 5 5 ]
+1 -1
.github/workflows/push.yaml
··· 17 17 18 18 - run: nix flake check 19 19 - run: nix develop --command mix deps.get 20 - - run: nix develop --command mix credo 20 + - run: nix develop --command mix credo --mute-exit-status -a 21 21 - run: nix develop --command mix test