analytics/.formatter.exs
Adrian Gruntkowski 62c6cb5f4c Implement assert_matches with expanded expressions support in match assertions (#5024)
* An experiment in more advanced predicates in pattern matches

* More friendly pin expressions in comparison report

* Use the new assert in a real test

* Remove synthetic failing test

* Add moduledoc

* Rename `exact` to `exactly`

* Make standard match bindings not throw unused warnings

* Add basic support for ^strict_map() operator

* Improve strict map checking to support nesting and better error report

* Add checks for more common data types, including serialized time formats

* Refactor the macro for a bit better legibility

* Reduce code nesting further

* Fix documentation definition
2025-01-31 11:18:54 +00:00

13 lines
319 B
Elixir

[
plugins: [Phoenix.LiveView.HTMLFormatter],
import_deps: [:ecto, :ecto_sql, :phoenix],
subdirectories: ["priv/*/migrations"],
inputs: [
"*.{heex,ex,exs}",
"{config,lib,test,extra}/**/*.{heex,ex,exs}",
"priv/*/seeds.exs",
"storybook/**/*.exs"
],
locals_without_parens: [assert_matches: 1]
]