cannot figure out why format is doing this
Completed
hey guys,
I know this is kind of silly, but it's driving me nuts.
services.AddDbContext<ApplicationDbContext>(options =>
options.UseNpgsql("blahblahblah connection string")
);
And the autoformat is doing this
services.AddDbContext<ApplicationDbContext>(options =>
options.UseNpgsql("blahblahblah connection string")
);
It appears to be lining up the => and . symbols, but I can't seem to find the style setting that's causing this.
I should note, that further in the file is this, which is formatting perfectly.
services.AddMvc()
.AddRazorPagesOptions(options => {
options.Conventions.AuthorizeFolder("/Account/Manage");
options.Conventions.AuthorizePage("/Account/Logout");
});
Can someone give me guidance?
Please sign in to leave a comment.