public EditorConfigSectionAspect(RepositoryContext context, string name, bool isSectionFirst)
     : base(context)
 {
     Require <EditorConfig_File>();
     editorConfigPath    = EditorConfig_File.GetEditorConfigPath(Context);
     this.name           = name;
     this.isSectionFirst = isSectionFirst;
 }
Example #2
0
 public EditorConfigDeclarationAspect(RepositoryContext context, string sectionName, string key, string value)
     : base(context)
 {
     Require <TSectionAspect>();
     this.sectionName = sectionName;
     this.key         = key;
     this.value       = value;
     editorConfigPath = EditorConfig_File.GetEditorConfigPath(Context);
 }
 public Root_True_EditorConfig_Declaration(RepositoryContext context)
     : base(context)
 {
     Require <EditorConfig_File>();
     editorConfigPath = EditorConfig_File.GetEditorConfigPath(Context);
 }