ash_authentication/.formatter.exs
James Harton a939dde9b9
feat(PasswordAuthentication): Registration and authentication with local credentials (#4)
This is missing a bunch of features that you probably want to use (eg confirmation, password resets), but it's a pretty good place to put a stake in the sand and say it works.
2022-10-25 11:07:07 +13:00

25 lines
501 B
Elixir

spark_locals_without_parens = [
api: 1,
confirmation_required?: 1,
hash_provider: 1,
hashed_password_field: 1,
identity_field: 1,
password_confirmation_field: 1,
password_field: 1,
read_action_name: 1,
register_action_name: 1,
sign_in_action_name: 1,
subject_name: 1
]
[
import_deps: [:ash, :spark],
inputs: [
"*.{ex,exs}",
"{config,lib,test}/**/*.{ex,exs}"
],
plugins: [Spark.Formatter],
export: [
locals_without_parens: spark_locals_without_parens
]
]