This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
611260e
commit f17b961
Showing
22 changed files
with
626 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<Solution> | ||
<Folder Name="/Solution Items/"> | ||
<File Path=".editorconfig" /> | ||
<File Path=".gitattributes" /> | ||
<File Path=".gitignore" /> | ||
<File Path=".netconfig" /> | ||
<File Path="README.md" /> | ||
<File Path="Directory.Build.targets" /> | ||
<File Path="stryker-config.json" /> | ||
<File Path="LICENSE" /> | ||
<File Path="Directory.Build.props" /> | ||
<File Path="stylecop.json" /> | ||
<File Path="Directory.Packages.props" /> | ||
<File Path=".deepsource.toml" /> | ||
</Folder> | ||
<Folder Name="/Solution Items/.config/"> | ||
<File Path=".config\dotnet-tools.json" /> | ||
</Folder> | ||
<Folder Name="/Solution Items/.github/"> | ||
<File Path=".github\CODEOWNERS" /> | ||
<File Path=".github\dependabot.yml" /> | ||
</Folder> | ||
<Folder Name="/Solution Items/.github/workflows/"> | ||
<File Path=".github\workflows\dotnet.yml" /> | ||
<File Path=".github\workflows\codeql.yml" /> | ||
<File Path=".github\workflows\dependency-review.yml" /> | ||
<File Path=".github\workflows\scorecard.yml" /> | ||
</Folder> | ||
<Folder Name="/Solution Items/tools/"> | ||
<File Path="tools\code-coverage.bat" /> | ||
<File Path="tools\code-coverage.ps1" /> | ||
<File Path="tools\mutation-testing.bat" /> | ||
<File Path="tools\mutation-testing.ps1" /> | ||
<File Path="tools\benchmarks.bat" /> | ||
<File Path="tools\benchmarks.ps1" /> | ||
</Folder> | ||
<Folder Name="/src/"> | ||
<Project Path="src\OffDotNet.CodeAnalysis.Pdf\OffDotNet.CodeAnalysis.Pdf.csproj" Type="Classic C#" /> | ||
<Project Path="src\OffDotNet.CodeAnalysis\OffDotNet.CodeAnalysis.csproj" Type="Classic C#" /> | ||
<File Path="src\Directory.Build.props" /> | ||
</Folder> | ||
<Folder Name="/tests/"> | ||
<Project Path="tests\OffDotNet.CodeAnalysis.Pdf.Tests\OffDotNet.CodeAnalysis.Pdf.Tests.csproj" Type="Classic C#" /> | ||
<Project Path="tests\OffDotNet.CodeAnalysis.Tests\OffDotNet.CodeAnalysis.Tests.csproj" Type="Classic C#" /> | ||
<File Path="tests\Directory.Build.props" /> | ||
</Folder> | ||
</Solution> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// <copyright file="TextCursorOptions.cs" company="Sunt Programator"> | ||
// Copyright (c) Sunt Programator. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// </copyright> | ||
|
||
namespace OffDotNet.CodeAnalysis.Configs; | ||
|
||
public sealed record TextCursorOptions | ||
{ | ||
public int WindowSize { get; init; } = 2048; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.