An Elixir toolkit for the AT Protocol. hexdocs.pm/atex
elixir bluesky atproto decentralization
25
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: mute credo exit code

+12 -2
+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