Добавьте файлы проекта.
This commit is contained in:
24
SQLLinter/Core/Interfaces/IConfig.cs
Normal file
24
SQLLinter/Core/Interfaces/IConfig.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using SQLLinter.Common;
|
||||
|
||||
namespace SQLLinter.Core.Interfaces
|
||||
{
|
||||
public interface IConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// Уровень совместимости SQL Server
|
||||
/// </summary>
|
||||
int CompatibilityLevel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Включенные правила.
|
||||
/// Key - Название правила.
|
||||
/// Value - Уровень предупреждения.
|
||||
/// </summary>
|
||||
Dictionary<string, RuleViolationSeverity> Rules { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Список сторонних плагинов.
|
||||
/// </summary>
|
||||
List<string> Plugins { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user