Skip to content

Commit 1cf02e8

Browse files
committed
Removed extraneous line breaks at end of file, between end braces
Extraneous line breaks were included at the end of some files. In many cases, these were inherited from a single root template, and copied out multiple times. In addition, in `.cs` files, there was often an extraneous line break between the final two braces (for the `class` and the `namespace` respectively), contrary to Ignia's (current) style guide. These have all been removed for the sake of consistency.
1 parent a1e2cff commit 1cf02e8

68 files changed

Lines changed: 69 additions & 101 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

OnTopic.Editor.AspNetCore.Host/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ public static IHostBuilder CreateHostBuilder(string[] args) =>
4040
});
4141

4242
} //Class
43-
} //Namespace
43+
} //Namespace

OnTopic.Editor.AspNetCore.Host/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ public static void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
142142
}
143143

144144
} //Class
145-
} //Namespace
145+
} //Namespace

OnTopic.Editor.AspNetCore.Host/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@
6161
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
6262
</compilers>
6363
</system.codedom>
64-
</configuration>
64+
</configuration>

OnTopic.Editor.AspNetCore.Host/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
}
66
},
77
"AllowedHosts": "*"
8-
}
8+
}

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Editor/Components/DisplayOptions/Default.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
<label class="form-check-label">
1919
<input type="radio" asp-for="Value" value="Mobile" class="form-check-input" disabled=@(!Model.AttributeDescriptor.IsEnabled) required=@Model.AttributeDescriptor.IsRequired /> Mobile
2020
</label>
21-
</div>
21+
</div>

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Editor/Components/FilePath/Default.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
placeholder =@Model.InheritedValue
1212
disabled =@(!Model.AttributeDescriptor.IsEnabled)
1313
required =@Model.AttributeDescriptor.IsRequired
14-
/>
14+
/>

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Editor/Edit.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@
111111
});
112112
113113
</script>
114-
}
114+
}

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Shared/CloseModal.cshtml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
<!DOCTYPE html>
66
<html>
7-
<head>
8-
<script>
9-
window.parent.closeModal()
10-
</script>
11-
</head>
12-
<body>
13-
</body>
14-
</html>
7+
<head>
8+
<script>
9+
window.parent.closeModal()
10+
</script>
11+
</head>
12+
<body>
13+
</body>
14+
</html>

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Shared/Error.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
<h2>An error occurred while processing your request.</h2>
1111
</hgroup>
1212
</body>
13-
</html>
13+
</html>

OnTopic.Editor.AspNetCore/Areas/Editor/Views/Shared/_Toolbar.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@
6868
</li>
6969
}
7070
</ul>
71-
</div>
71+
</div>

0 commit comments

Comments
 (0)