-
Notifications
You must be signed in to change notification settings - Fork 0
chore: Update templates #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
0fb901a
Update lint workflow for pull request titles
DaveSkender 974c802
Refactor lock-issues-pr workflow for efficiency
DaveSkender 7258202
Delete .vscode/settings.json
DaveSkender 8b79f45
Normalize line endings and configure NuGet lock files
DaveSkender 5838b48
Revise .editorconfig for improved settings
DaveSkender 022d64f
Update NOTICE file for attribution clarity
DaveSkender e539cde
Delete LICENSE
DaveSkender 7372471
Delete gitversion.yml
DaveSkender 0e4b235
Revise README title and content for clarity
DaveSkender f40043f
Update action versions in lint-pull-request workflow
DaveSkender 6e706e1
Add CodeQL configuration for security and quality checks
DaveSkender 7a2b328
Add 'labeled' event type to lint-pull-request workflow triggers
DaveSkender fc53e85
Update .gitattributes to enforce CRLF for Windows script files
DaveSkender File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,29 +1,56 @@ | ||
| # top-most EditorConfig file | ||
| # EditorConfig: https://EditorConfig.org | ||
|
|
||
| # Top-level EditorConfig file | ||
| root = true | ||
|
|
||
| # global baselines | ||
| #### Core EditorConfig Options #### | ||
|
|
||
| # Global settings for all files | ||
| [*] | ||
| charset = utf-8 | ||
| end_of_line = lf | ||
| insert_final_newline = true | ||
| trim_trailing_whitespace = true | ||
|
|
||
| indent_style = space | ||
| indent_size = 2 | ||
| tab_width = 2 | ||
|
|
||
| line_length = 150 | ||
| max_line_length = 150 | ||
| trim_trailing_whitespace = true | ||
| insert_final_newline = true | ||
| # Disable max line length enforcement | ||
| max_line_length = off | ||
|
|
||
| #### File Type Overrides #### | ||
|
|
||
| # Markdown files | ||
| [*.md] | ||
|
|
||
| # Allow trailing whitespace for line breaks | ||
| trim_trailing_whitespace = false | ||
|
|
||
| [*.sh] | ||
|
|
||
| [*.{csproj,props,targets}] | ||
| indent_style = space | ||
| indent_size = 2 | ||
| tab_width = 2 | ||
|
|
||
| [*.{csproj,json,jsonc,xml,yaml,yml}] | ||
|
|
||
| [*.yml] | ||
| indent_style = space | ||
| indent_size = 2 | ||
| tab_width = 2 | ||
|
|
||
| # Batch and command files | ||
| [*.{cmd,bat}] | ||
| # Use CRLF for Windows specific files | ||
| end_of_line = crlf | ||
|
|
||
| # .NET source files | ||
| [*.{cs,vb}] | ||
| tab_width = 4 | ||
|
|
||
| indent_style = space | ||
| indent_size = 4 | ||
| end_of_line = lf | ||
| tab_width = 4 | ||
|
|
||
| # .NET generated files | ||
| [*.g.cs] | ||
| generated_code = true |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,63 +1,9 @@ | ||
| ############################################################################### | ||
| # Set default behavior to automatically normalize line endings. | ||
| ############################################################################### | ||
| * text=auto | ||
| # Normalize line endings. | ||
| * text=auto eol=lf | ||
|
|
||
| ############################################################################### | ||
| # Set default behavior for command prompt diff. | ||
| # | ||
| # This is need for earlier builds of msysgit that does not have it on by | ||
| # default for csharp files. | ||
| # Note: This is only used by command line | ||
| ############################################################################### | ||
| #*.cs diff=csharp | ||
| # NuGet lock files should always use LF | ||
| **/packages.lock.json text eol=lf | ||
|
|
||
| ############################################################################### | ||
| # Set the merge driver for project and solution files | ||
| # | ||
| # Merging from the command prompt will add diff markers to the files if there | ||
| # are conflicts (Merging from VS is not affected by the settings below, in VS | ||
| # the diff markers are never inserted). Diff markers may cause the following | ||
| # file extensions to fail to load in VS. An alternative would be to treat | ||
| # these files as binary and thus will always conflict and require user | ||
| # intervention with every merge. To do so, just uncomment the entries below | ||
| ############################################################################### | ||
| #*.sln merge=binary | ||
| #*.csproj merge=binary | ||
| #*.vbproj merge=binary | ||
| #*.vcxproj merge=binary | ||
| #*.vcproj merge=binary | ||
| #*.dbproj merge=binary | ||
| #*.fsproj merge=binary | ||
| #*.lsproj merge=binary | ||
| #*.wixproj merge=binary | ||
| #*.modelproj merge=binary | ||
| #*.sqlproj merge=binary | ||
| #*.wwaproj merge=binary | ||
|
|
||
| ############################################################################### | ||
| # behavior for image files | ||
| # | ||
| # image files are treated as binary by default. | ||
| ############################################################################### | ||
| #*.jpg binary | ||
| #*.png binary | ||
| #*.gif binary | ||
|
|
||
| ############################################################################### | ||
| # diff behavior for common document formats | ||
| # | ||
| # Convert binary document formats to text before diffing them. This feature | ||
| # is only available from the command line. Turn it on by uncommenting the | ||
| # entries below. | ||
| ############################################################################### | ||
| #*.doc diff=astextplain | ||
| #*.DOC diff=astextplain | ||
| #*.docx diff=astextplain | ||
| #*.DOCX diff=astextplain | ||
| #*.dot diff=astextplain | ||
| #*.DOT diff=astextplain | ||
| #*.pdf diff=astextplain | ||
| #*.PDF diff=astextplain | ||
| #*.rtf diff=astextplain | ||
| #*.RTF diff=astextplain | ||
| # Windows script files should use CRLF | ||
| *.cmd text eol=crlf | ||
| *.bat text eol=crlf | ||
This file contains hidden or 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,8 @@ | ||
| name: org-codeql-config | ||
|
|
||
| queries: | ||
| - uses: security-and-quality | ||
|
|
||
| query-filters: | ||
| - exclude: | ||
| id: actions/unpinned-tag |
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.