ash_hq/.formatter.exs

36 lines
700 B
Elixir
Raw Permalink Normal View History

2022-03-21 17:43:24 +13:00
[
import_deps: [
:ecto,
:phoenix,
:ash,
:ash_postgres,
:ash_graphql,
:ash_admin,
:ash_csv,
:ash_oban
],
2022-09-16 10:35:33 +12:00
inputs: [
"*.{ex,exs}",
"priv/*/seeds.exs",
2022-09-28 16:18:05 +13:00
"priv/repo/**/*.{ex,exs}",
2022-09-16 10:35:33 +12:00
"priv/scripts/**/*.{ex,exs}",
"{config,lib,test}/**/*.{ex,exs}"
],
2024-04-03 09:38:44 +13:00
plugins: [Spark.Formatter],
2022-03-28 10:26:35 +13:00
subdirectories: ["priv/*/migrations"],
locals_without_parens: [
2023-01-25 19:52:13 +13:00
has_name_attribute?: 1,
2022-03-28 10:26:35 +13:00
name_attribute: 1,
2022-03-29 08:47:43 +13:00
load_for_search: 1,
doc_attribute: 1,
2022-03-30 17:40:17 +13:00
render_attributes: 1,
use_path_for_name?: 1,
add_name_to_path?: 1,
item_type: 1,
sanitized_name_attribute: 1,
show_docs_on: 1,
header_ids?: 1,
table_of_contents?: 1
2022-03-28 10:26:35 +13:00
]
2022-03-21 17:43:24 +13:00
]