// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.CoreServices.SqlContext { /// /// Defines the common settings used by the tools service /// public interface ISqlToolsSettingsValues { /// /// Intellisense specific settings /// IntelliSenseSettings IntelliSense { get; set; } /// /// Query execution specific settings /// // QueryExecutionSettings QueryExecutionSettings { get; set; } // /// // /// Formatter settings // /// // FormatterSettings Format { get; set; } /// /// Object Explorer specific settings /// ObjectExplorerSettings ObjectExplorer { get; set; } } }