2 writes to FormattingOptions
Microsoft.CodeAnalysis.Analyzers (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeCleanup\CodeCleanupOptionsProviders.cs (2)
21FormattingOptions = options.GetSyntaxFormattingOptions(languageServices), 36FormattingOptions = SyntaxFormattingOptionsProviders.GetDefault(languageServices),
4 references to FormattingOptions
Microsoft.CodeAnalysis.Analyzers (4)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\CodeCleanup\CodeCleanupOptions.cs (2)
24SeparateImportDirectiveGroups = FormattingOptions.SeparateImportDirectiveGroups, 26NewLine = FormattingOptions.LineFormatting.NewLine,
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\CodeCleanup\CodeCleanupHelpers.cs (2)
21var document1 = await syntaxFormatting.FormatAsync(document, Formatter.Annotation, options.FormattingOptions, cancellationToken).ConfigureAwait(false); 24var document2 = await syntaxFormatting.FormatAsync(document1, SyntaxAnnotation.ElasticAnnotation, options.FormattingOptions, cancellationToken).ConfigureAwait(false);