We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cross referencing this https://discourse.julialang.org/t/ann-juliaformatter-jl/48084/29
using JuliaFormatter using Dash using DashCoreComponents using DashHtmlComponents using DashTable fileorig = joinpath(mktempdir(),"afile.jl") txtorig = """html_div(style=Dict("width"=>"300px"),[dcc_dropdown(id = "input-id0", options = [Dict(("label" => "some text"), ("value" => "AA")), Dict("label" => "something else"), ("value" => "pdc")], value="AA",multi = false)])""" open(fileorig,"w") do f write(f,txtorig) end include(fileorig) #works format_file(fileorig,YASStyle()) include(fileorig) #fails
The text was updated successfully, but these errors were encountered:
see also a possible solution indicated by @pfitzseb https://discourse.julialang.org/t/ann-juliaformatter-jl/48084/31?u=bernhard
Sorry, something went wrong.
making the semicolon insertion an option should fix this. Also moving args around could work but the former is easier
There's now an option to remove the semicolon https://github.com/domluna/JuliaFormatter.jl#separate_kwargs_with_semicolon
separate_kwargs_with_semicolon
No branches or pull requests
cross referencing this https://discourse.julialang.org/t/ann-juliaformatter-jl/48084/29
The text was updated successfully, but these errors were encountered: