Skip to content

Commit

Permalink
global
Browse files Browse the repository at this point in the history
  • Loading branch information
na1307 committed Dec 27, 2024
1 parent ab0c983 commit 137692c
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 19 deletions.
80 changes: 80 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -931,3 +931,83 @@ dotnet_naming_style.begins_with_i.capitalization = pascal_case
# ReSharper properties
resharper_wrap_object_and_collection_initializer_style = chop_always
resharper_member_can_be_private_global_highlighting = none

[*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}]

# Visual C++ 코드 스타일 설정

cpp_generate_documentation_comments = xml

# Visual C++ 서식 설정

cpp_indent_braces = false
cpp_indent_multi_line_relative_to = statement_begin
cpp_indent_within_parentheses = indent
cpp_indent_preserve_within_parentheses = true
cpp_indent_case_contents = false
cpp_indent_case_labels = false
cpp_indent_case_contents_when_block = false
cpp_indent_lambda_braces_when_parameter = false
cpp_indent_goto_labels = none
cpp_indent_preprocessor = none
cpp_indent_access_specifiers = false
cpp_indent_namespace_contents = false
cpp_indent_preserve_comments = false
cpp_new_line_before_open_brace_namespace = ignore
cpp_new_line_before_open_brace_type = ignore
cpp_new_line_before_open_brace_function = ignore
cpp_new_line_before_open_brace_block = ignore
cpp_new_line_before_open_brace_lambda = ignore
cpp_new_line_scope_braces_on_separate_lines = false
cpp_new_line_close_brace_same_line_empty_type = true
cpp_new_line_close_brace_same_line_empty_function = true
cpp_new_line_before_catch = false
cpp_new_line_before_else = false
cpp_new_line_before_while_in_do_while = false
cpp_space_before_function_open_parenthesis = ignore
cpp_space_within_parameter_list_parentheses = false
cpp_space_between_empty_parameter_list_parentheses = false
cpp_space_after_keywords_in_control_flow_statements = false
cpp_space_within_control_flow_statement_parentheses = false
cpp_space_before_lambda_open_parenthesis = false
cpp_space_within_cast_parentheses = false
cpp_space_after_cast_close_parenthesis = false
cpp_space_within_expression_parentheses = false
cpp_space_before_block_open_brace = false
cpp_space_between_empty_braces = false
cpp_space_before_initializer_list_open_brace = false
cpp_space_within_initializer_list_braces = false
cpp_space_preserve_in_initializer_list = false
cpp_space_before_open_square_bracket = false
cpp_space_within_square_brackets = false
cpp_space_before_empty_square_brackets = false
cpp_space_between_empty_square_brackets = false
cpp_space_group_square_brackets = false
cpp_space_within_lambda_brackets = false
cpp_space_between_empty_lambda_brackets = false
cpp_space_before_comma = false
cpp_space_after_comma = false
cpp_space_remove_around_member_operators = false
cpp_space_before_inheritance_colon = false
cpp_space_before_constructor_colon = false
cpp_space_remove_before_semicolon = false
cpp_space_after_semicolon = false
cpp_space_remove_around_unary_operator = false
cpp_space_around_binary_operator = ignore
cpp_space_around_assignment_operator = ignore
cpp_space_pointer_reference_alignment = ignore
cpp_space_around_ternary_operator = ignore
cpp_use_unreal_engine_macro_formatting = false
cpp_wrap_preserve_blocks = never

# Visual C++ 정리 설정

cpp_include_cleanup_add_missing_error_tag_type = suggestion
cpp_include_cleanup_remove_unused_error_tag_type = dimmed
cpp_include_cleanup_optimize_unused_error_tag_type = suggestion
cpp_include_cleanup_sort_after_edits = false
cpp_sort_includes_error_tag_type = none
cpp_sort_includes_priority_case_sensitive = false
cpp_sort_includes_priority_style = quoted
cpp_includes_style = default
cpp_includes_use_forward_slash = false
31 changes: 20 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,32 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "nuget" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: nuget
directory: /
schedule:
interval: "daily"
interval: daily
time: "18:00"
timezone: "Asia/Seoul"
timezone: Asia/Seoul
assignees:
- "na1307"
- na1307
pull-request-branch-name:
separator: _
reviewers:
- "na1307"
- na1307
groups:
default:
patterns:
- "*"

- package-ecosystem: dotnet-sdk
directory: /
schedule:
interval: weekly
day: wednesday
time: "09:00"
timezone: Asia/Seoul
assignees:
- na1307
pull-request-branch-name:
separator: _
reviewers:
- na1307
13 changes: 6 additions & 7 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ name: .NET

on:
push:
branches: [ "main" ]
branches:
- main
pull_request:
branches: [ "main" ]
branches:
- main
release:
types: [ "published" ]
types:
- published

jobs:
build:
Expand All @@ -22,8 +25,6 @@ jobs:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Cache NuGet
uses: actions/cache@v4
with:
Expand Down Expand Up @@ -55,8 +56,6 @@ jobs:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Download Package artifact
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion Bluehill.Analyzers.Pages/Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

<p>These pages describe the Bluehill.Analyzers analyzer.</p>

<p><NavLink href="Rules">Rules</NavLink></p>
<p><NavLink href="rules">Rules</NavLink></p>
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "9.0.101",
"rollForward": "latestPatch",
"allowPrerelease": false
}
}

0 comments on commit 137692c

Please sign in to comment.