Skip to content

Commit

Permalink
Honor .editorconfig in Omnisharp
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Sep 25, 2020
1 parent 6815389 commit e129428
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true
"files.trimFinalNewlines": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableImportCompletion": true,
"omnisharp.enableRoslynAnalyzers": true
}
7 changes: 1 addition & 6 deletions test/Library.Tests/CalculatorTests.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
// Copyright (c) COMPANY-PLACEHOLDER. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using Library;
using Xunit;
using Xunit.Abstractions;

public class CalculatorTests
{
private readonly ITestOutputHelper logger;

public CalculatorTests(ITestOutputHelper logger)
public CalculatorTests()
{
this.logger = logger;
}

[Fact]
Expand Down

0 comments on commit e129428

Please sign in to comment.