14 lines
416 B
C#
14 lines
416 B
C#
using SQLLinter.Common;
|
|
using SQLLinter.Core.Interfaces;
|
|
|
|
namespace SQLLinter.Infrastructure.Configuration
|
|
{
|
|
public class Config : IConfig
|
|
{
|
|
public int CompatibilityLevel { get; set; }
|
|
public Dictionary<string, RuleViolationSeverity> Rules { get; set; } = new();
|
|
public List<string> Plugins { get; set; } = new();
|
|
public bool GenerateDetails { get; set; } = false;
|
|
}
|
|
}
|