2019-07-04 14:38:51 +00:00
|
|
|
locals_without_parens = ~w[
|
2021-01-02 18:21:48 +00:00
|
|
|
temple c
|
2019-07-09 02:29:41 +00:00
|
|
|
html head title style script
|
2019-05-08 07:47:43 +00:00
|
|
|
noscript template
|
|
|
|
body section nav article aside h1 h2 h3 h4 h5 h6
|
|
|
|
header footer address main
|
|
|
|
p pre blockquote ol ul li dl dt dd figure figcaption div
|
|
|
|
a em strong small s cite q dfn abbr data time code var samp kbd
|
|
|
|
sub sup i b u mark ruby rt rp bdi bdo span
|
|
|
|
ins del
|
|
|
|
iframe object video audio canvas
|
|
|
|
map svg math
|
|
|
|
table caption colgroup tbody thead tfoot tr td th
|
|
|
|
form fieldset legend label button select datalist optgroup
|
2019-07-08 02:31:09 +00:00
|
|
|
option text_area output progress meter
|
2019-05-08 07:47:43 +00:00
|
|
|
details summary menuitem menu
|
|
|
|
meta link base
|
|
|
|
area br col embed hr img input keygen param source track wbr
|
2020-06-16 19:28:21 +00:00
|
|
|
txt partial
|
2019-07-04 00:36:04 +00:00
|
|
|
|
2019-09-14 01:36:16 +00:00
|
|
|
animate animateMotion animateTransform circle clipPath
|
|
|
|
color-profile defs desc discard ellipse feBlend
|
|
|
|
feColorMatrix feComponentTransfer feComposite feConvolveMatrix feDiffuseLighting feDisplacementMap feDistantLight feDropShadow
|
|
|
|
feFlood feFuncA feFuncB feFuncG feFuncR feGaussianBlur feImage feMerge feMergeNode feMorphology feOffset
|
|
|
|
fePointLight feSpecularLighting feSpotLight feTile feTurbulence filter foreignObject g hatch hatchpath image line linearGradient
|
|
|
|
marker mask mesh meshgradient meshpatch meshrow metadata mpath path pattern polygon
|
2020-06-16 19:28:21 +00:00
|
|
|
polyline radialGradient rect set solidcolor stop svg switch symbol text
|
2019-09-14 01:36:16 +00:00
|
|
|
textPath tspan unknown use view
|
|
|
|
|
2019-07-04 00:36:04 +00:00
|
|
|
form_for inputs_for
|
|
|
|
checkbox color_input checkbox color_input date_input date_select datetime_local_input
|
|
|
|
datetime_select email_input file_input hidden_input number_input password_input range_input
|
|
|
|
search_input telephone_input textarea text_input time_input time_select url_input
|
2019-08-13 15:04:14 +00:00
|
|
|
reset submit phx_label radio_button multiple_select select phx_link phx_button
|
2019-07-04 00:36:04 +00:00
|
|
|
]a |> Enum.map(fn e -> {e, :*} end)
|
2019-05-08 07:47:43 +00:00
|
|
|
|
2019-04-15 01:44:39 +00:00
|
|
|
[
|
2019-05-08 07:47:43 +00:00
|
|
|
inputs: ["*.{ex,exs}", "{config,lib,test}/**/*.{ex,exs}"],
|
2019-07-04 14:38:51 +00:00
|
|
|
locals_without_parens: locals_without_parens,
|
|
|
|
export: [locals_without_parens: locals_without_parens]
|
2019-04-15 01:44:39 +00:00
|
|
|
]
|