From 1ae4dee586141472e43e1433de7424710eac787d Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:28:54 +0300 Subject: [PATCH 01/19] Formate code on save --- .idea/.idea.yahalom/.idea/workspace.xml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .idea/.idea.yahalom/.idea/workspace.xml diff --git a/.idea/.idea.yahalom/.idea/workspace.xml b/.idea/.idea.yahalom/.idea/workspace.xml new file mode 100644 index 00000000..836779d0 --- /dev/null +++ b/.idea/.idea.yahalom/.idea/workspace.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + \ No newline at end of file From ad91722bc2d0ab4fbc7d220dd8d38e29499df474 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:32:02 +0300 Subject: [PATCH 02/19] Add format ci job --- .github/workflows/format.yaml | 60 +++++++++++++++++++++++++++ .github/workflows/test-and-build.yaml | 3 ++ 2 files changed, 63 insertions(+) create mode 100644 .github/workflows/format.yaml diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml new file mode 100644 index 00000000..f676371f --- /dev/null +++ b/.github/workflows/format.yaml @@ -0,0 +1,60 @@ +name: Format + +on: + workflow_call: + +permissions: + contents: read + +jobs: + format_check: + name: Verify Rider formatting (no changes kept) + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Download JetBrains ReSharper Command-Line Tools (jb) + env: + JB_VERSION: 2024.1.0 + run: | + curl -sSL "https://download.jetbrains.com/resharper/JetBrains.ReSharper.CommandLineTools.Unix.${JB_VERSION}.tar.gz" -o jbcli.tar.gz + mkdir -p jbcli + tar -xzf jbcli.tar.gz -C jbcli + echo "$PWD/jbcli" >> "$GITHUB_PATH" + + - name: Run Rider cleanup (dry-check via diff) + shell: bash + run: | + jb cleanupcode \ + --profile="Built-in: Reformat & Apply Syntax Style" \ + --no-build \ + --verbosity=WARN \ + --exclude="**/bin/**" \ + --exclude="**/obj/**" \ + . + + - name: Detect formatting changes + id: diff + shell: bash + run: | + if [[ -n "$(git status --porcelain)" ]]; then + echo "changed=true" >> "$GITHUB_OUTPUT" + echo "The following files would be reformatted:" + git status --porcelain | awk '{print $2}' + else + echo "changed=false" >> "$GITHUB_OUTPUT" + fi + + - name: Revert any changes (keep workspace clean) + if: steps.diff.outputs.changed == 'true' + run: | + git restore --staged . + git checkout -- . + git clean -fd + + - name: Fail if formatting needed + if: steps.diff.outputs.changed == 'true' + run: | + echo "❌ Formatting check failed. Please run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the results." + exit 1 diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index e45711c5..16b90dfd 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -25,6 +25,9 @@ jobs: echo "is_unity_license_set=false" >> $GITHUB_OUTPUT fi + format_check: + uses: ./.github/workflows/format.yml + test: name: Run Unity Tests needs: checklicense From 4565cebd967bc18dc22b85b2d0129f6d223d9146 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:36:31 +0300 Subject: [PATCH 03/19] rename file path --- .github/workflows/test-and-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index 16b90dfd..7e3ac38b 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -26,7 +26,7 @@ jobs: fi format_check: - uses: ./.github/workflows/format.yml + uses: ./.github/workflows/format.yaml test: name: Run Unity Tests From b46bff5b2c60c65fdc5d9d2bc23fd9abfbd70bfd Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:40:20 +0300 Subject: [PATCH 04/19] Add formate test script --- Assets/FormatTest.cs | 17 +++++++++++++++++ Assets/FormatTest.cs.meta | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 Assets/FormatTest.cs create mode 100644 Assets/FormatTest.cs.meta diff --git a/Assets/FormatTest.cs b/Assets/FormatTest.cs new file mode 100644 index 00000000..405a650c --- /dev/null +++ b/Assets/FormatTest.cs @@ -0,0 +1,17 @@ +using UnityEngine; + +public class FormatTest : MonoBehaviour +{ + private bool test; + + private void Start() + { + if (test == false) + { + Debug.Log("test"); } + } + + private void Update() + { + } +} \ No newline at end of file diff --git a/Assets/FormatTest.cs.meta b/Assets/FormatTest.cs.meta new file mode 100644 index 00000000..f0c488f4 --- /dev/null +++ b/Assets/FormatTest.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e4792c9c4214e0e4ca89bfdae733b257 \ No newline at end of file From e648254efb5ee0b4f6bd05c214c288d286e01348 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:45:14 +0300 Subject: [PATCH 05/19] Fail process if format check fails --- .github/workflows/test-and-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index 7e3ac38b..b60084d6 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -30,7 +30,7 @@ jobs: test: name: Run Unity Tests - needs: checklicense + needs: [checklicense, format_check] if: needs.checklicense.outputs.is_unity_license_set == 'true' runs-on: windows-latest steps: @@ -52,7 +52,7 @@ jobs: buildForAllSupportedPlatforms: name: Build for ${{ matrix.targetPlatform }} - needs: [checklicense, test] + needs: [checklicense, test, format_check] if: needs.checklicense.outputs.is_unity_license_set == 'true' runs-on: windows-latest strategy: From 79f608fc3ffe502dc61d49a04270efe6a5326f2e Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:52:45 +0300 Subject: [PATCH 06/19] Fix format job --- .github/workflows/format.yaml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index f676371f..8f71b3f9 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -3,9 +3,6 @@ name: Format on: workflow_call: -permissions: - contents: read - jobs: format_check: name: Verify Rider formatting (no changes kept) @@ -13,18 +10,18 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + + -name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.0.x' - name: Download JetBrains ReSharper Command-Line Tools (jb) - env: - JB_VERSION: 2024.1.0 run: | - curl -sSL "https://download.jetbrains.com/resharper/JetBrains.ReSharper.CommandLineTools.Unix.${JB_VERSION}.tar.gz" -o jbcli.tar.gz - mkdir -p jbcli - tar -xzf jbcli.tar.gz -C jbcli - echo "$PWD/jbcli" >> "$GITHUB_PATH" + dotnet tool install --global JetBrains.ReSharper.GlobalTools + echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH" - name: Run Rider cleanup (dry-check via diff) - shell: bash run: | jb cleanupcode \ --profile="Built-in: Reformat & Apply Syntax Style" \ @@ -36,7 +33,6 @@ jobs: - name: Detect formatting changes id: diff - shell: bash run: | if [[ -n "$(git status --porcelain)" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" From 5f6e576df7e50089e017ed0b47f14378bb749e4a Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:56:14 +0300 Subject: [PATCH 07/19] Fix indentation issue --- .github/workflows/format.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 8f71b3f9..13dac3d1 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -10,13 +10,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - -name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: '8.0.x' - - name: Download JetBrains ReSharper Command-Line Tools (jb) + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.0.x' + + - name: Install JetBrains ReSharper Global Tools (jb) run: | dotnet tool install --global JetBrains.ReSharper.GlobalTools echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH" From 9adbe5f7fe0620d9d4f071f1d665e514d18c2400 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 10:58:39 +0300 Subject: [PATCH 08/19] Print fail reason --- .github/workflows/format.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 13dac3d1..cdde32df 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -36,8 +36,7 @@ jobs: run: | if [[ -n "$(git status --porcelain)" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" - echo "The following files would be reformatted:" - git status --porcelain | awk '{print $2}' + git status --porcelain | awk '{print $2}' > files_needing_format.txt else echo "changed=false" >> "$GITHUB_OUTPUT" fi @@ -52,5 +51,8 @@ jobs: - name: Fail if formatting needed if: steps.diff.outputs.changed == 'true' run: | - echo "❌ Formatting check failed. Please run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the results." + echo "❌ Formatting check failed. The following files are not formatted properly:" + cat files_needing_format.txt + echo + echo "➡️ Run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the changes." exit 1 From c1fb274d834327c69ca184fb8f95995cc526d448 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:02:38 +0300 Subject: [PATCH 09/19] print files --- .github/workflows/format.yaml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index cdde32df..c8824e2b 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -34,25 +34,31 @@ jobs: - name: Detect formatting changes id: diff run: | + LIST_FILE="$RUNNER_TEMP/files_needing_format.txt" if [[ -n "$(git status --porcelain)" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" - git status --porcelain | awk '{print $2}' > files_needing_format.txt + git status --porcelain | awk '{print $2}' | sort -u | tee "$LIST_FILE" + echo "list_file=$LIST_FILE" >> "$GITHUB_OUTPUT" else echo "changed=false" >> "$GITHUB_OUTPUT" + echo "list_file=" >> "$GITHUB_OUTPUT" fi - - name: Revert any changes (keep workspace clean) + - name: Report formatting issues if: steps.diff.outputs.changed == 'true' + run: | + echo "❌ Formatting check failed. The following files are not formatted properly:" + cat "${{ steps.diff.outputs.list_file }}" + echo + echo "➡️ Run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the changes." + + - name: Revert any changes (always clean workspace) + if: always() run: | git restore --staged . git checkout -- . git clean -fd - - name: Fail if formatting needed + - name: Fail job if formatting needed if: steps.diff.outputs.changed == 'true' - run: | - echo "❌ Formatting check failed. The following files are not formatted properly:" - cat files_needing_format.txt - echo - echo "➡️ Run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the changes." - exit 1 + run: exit 1 From baa23089068f42251ec4bfa73d169a06224c661e Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:15:02 +0300 Subject: [PATCH 10/19] Print files to console --- .github/workflows/format.yaml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index c8824e2b..1db8bedf 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -44,13 +44,27 @@ jobs: echo "list_file=" >> "$GITHUB_OUTPUT" fi - - name: Report formatting issues + - name: Summarize unformatted files if: steps.diff.outputs.changed == 'true' run: | - echo "❌ Formatting check failed. The following files are not formatted properly:" - cat "${{ steps.diff.outputs.list_file }}" - echo - echo "➡️ Run Rider 'Code Cleanup' (Reformat & Apply Syntax Style) locally and commit the changes." + { + echo "### ❌ Formatting check failed" + echo + echo "The following files are not formatted properly:" + echo + echo '```' + cat "${{ steps.diff.outputs.list_file }}" + echo '```' + echo + echo "➡️ Run Rider **Code Cleanup** (Built-in: *Reformat & Apply Syntax Style*) locally and commit." + } >> "$GITHUB_STEP_SUMMARY" + + - name: Annotate files in Checks UI + if: steps.diff.outputs.changed == 'true' + run: | + while IFS= read -r f; do + echo "::error file=$f,title=Not formatted::Run Rider Code Cleanup (Reformat & Apply Syntax Style) and commit." + done < "${{ steps.diff.outputs.list_file }}" - name: Revert any changes (always clean workspace) if: always() From b895d462ee9ab38a52c3701dbc6347ec807dd3ef Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:18:06 +0300 Subject: [PATCH 11/19] Fix manully --- Assets/FormatTest.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/FormatTest.cs b/Assets/FormatTest.cs index 405a650c..f9cfb9e8 100644 --- a/Assets/FormatTest.cs +++ b/Assets/FormatTest.cs @@ -8,7 +8,8 @@ private void Start() { if (test == false) { - Debug.Log("test"); } + Debug.Log("test"); + } } private void Update() From 3714f3e7821981e594f111f7df29242fb370cb66 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:24:22 +0300 Subject: [PATCH 12/19] Change to format only --- .idea/.idea.yahalom/.idea/workspace.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.idea/.idea.yahalom/.idea/workspace.xml b/.idea/.idea.yahalom/.idea/workspace.xml index 836779d0..335ac1eb 100644 --- a/.idea/.idea.yahalom/.idea/workspace.xml +++ b/.idea/.idea.yahalom/.idea/workspace.xml @@ -13,7 +13,7 @@ From 3e716c16fb2869d3ee675c30229c6bdd01f56e90 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:27:52 +0300 Subject: [PATCH 13/19] Only format --- .github/workflows/format.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 1db8bedf..6ab227c4 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -24,7 +24,7 @@ jobs: - name: Run Rider cleanup (dry-check via diff) run: | jb cleanupcode \ - --profile="Built-in: Reformat & Apply Syntax Style" \ + --profile="Built-in: Reformat" \ --no-build \ --verbosity=WARN \ --exclude="**/bin/**" \ From 837566e42a93e28a23639f23d078c6efade9a8d4 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:29:59 +0300 Subject: [PATCH 14/19] Fix action name --- .github/workflows/format.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 6ab227c4..4c81339b 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -24,7 +24,7 @@ jobs: - name: Run Rider cleanup (dry-check via diff) run: | jb cleanupcode \ - --profile="Built-in: Reformat" \ + --profile="Built-in: Reformat Code" \ --no-build \ --verbosity=WARN \ --exclude="**/bin/**" \ From fee8f60a9afb32bea325807f0af6bfdd28da0597 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:38:14 +0300 Subject: [PATCH 15/19] Exclude idea files --- .github/workflows/format.yaml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 4c81339b..6c971fe4 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -5,7 +5,7 @@ on: jobs: format_check: - name: Verify Rider formatting (no changes kept) + name: Verify Rider formatting runs-on: ubuntu-latest steps: - name: Checkout @@ -27,17 +27,22 @@ jobs: --profile="Built-in: Reformat Code" \ --no-build \ --verbosity=WARN \ + --include="**/*.cs" \ + --include="**/*.csproj" \ + --include="**/*.sln" \ --exclude="**/bin/**" \ --exclude="**/obj/**" \ + --exclude="**/.idea/**" \ . - - name: Detect formatting changes + - name: Detect formatting changes (code files only) id: diff run: | LIST_FILE="$RUNNER_TEMP/files_needing_format.txt" - if [[ -n "$(git status --porcelain)" ]]; then + CHANGED="$(git status --porcelain --untracked-files=no -- '*.cs' '*.csproj' '*.sln' | awk '{print $2}' | sort -u)" + if [[ -n "$CHANGED" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" - git status --porcelain | awk '{print $2}' | sort -u | tee "$LIST_FILE" + echo "$CHANGED" | tee "$LIST_FILE" echo "list_file=$LIST_FILE" >> "$GITHUB_OUTPUT" else echo "changed=false" >> "$GITHUB_OUTPUT" @@ -50,20 +55,20 @@ jobs: { echo "### ❌ Formatting check failed" echo - echo "The following files are not formatted properly:" + echo "The following code files are not formatted properly:" echo echo '```' cat "${{ steps.diff.outputs.list_file }}" echo '```' echo - echo "➡️ Run Rider **Code Cleanup** (Built-in: *Reformat & Apply Syntax Style*) locally and commit." + echo "➡️ Run Rider **Code Cleanup** (Built-in: *Reformat Code*) locally and commit." } >> "$GITHUB_STEP_SUMMARY" - name: Annotate files in Checks UI if: steps.diff.outputs.changed == 'true' run: | while IFS= read -r f; do - echo "::error file=$f,title=Not formatted::Run Rider Code Cleanup (Reformat & Apply Syntax Style) and commit." + echo "::error file=$f,title=Not formatted::Run Rider Code Cleanup (Built-in: Reformat Code) and commit." done < "${{ steps.diff.outputs.list_file }}" - name: Revert any changes (always clean workspace) From 77dd4c20c27a7c7d56b9f71aef697d3f55d430a4 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 11:44:17 +0300 Subject: [PATCH 16/19] Remove sln and cproj --- .github/workflows/format.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 6c971fe4..02caeacf 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -28,8 +28,6 @@ jobs: --no-build \ --verbosity=WARN \ --include="**/*.cs" \ - --include="**/*.csproj" \ - --include="**/*.sln" \ --exclude="**/bin/**" \ --exclude="**/obj/**" \ --exclude="**/.idea/**" \ From 21d039426d9a853d5b9a6e30b73bc3c85f454b0b Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Wed, 27 Aug 2025 14:50:21 +0300 Subject: [PATCH 17/19] Remove test script --- Assets/FormatTest.cs | 18 ------------------ Assets/FormatTest.cs.meta | 2 -- 2 files changed, 20 deletions(-) delete mode 100644 Assets/FormatTest.cs delete mode 100644 Assets/FormatTest.cs.meta diff --git a/Assets/FormatTest.cs b/Assets/FormatTest.cs deleted file mode 100644 index f9cfb9e8..00000000 --- a/Assets/FormatTest.cs +++ /dev/null @@ -1,18 +0,0 @@ -using UnityEngine; - -public class FormatTest : MonoBehaviour -{ - private bool test; - - private void Start() - { - if (test == false) - { - Debug.Log("test"); - } - } - - private void Update() - { - } -} \ No newline at end of file diff --git a/Assets/FormatTest.cs.meta b/Assets/FormatTest.cs.meta deleted file mode 100644 index f0c488f4..00000000 --- a/Assets/FormatTest.cs.meta +++ /dev/null @@ -1,2 +0,0 @@ -fileFormatVersion: 2 -guid: e4792c9c4214e0e4ca89bfdae733b257 \ No newline at end of file From d53ca4e3fec04d8f309a43f315ec3706e3341bd8 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Sun, 31 Aug 2025 11:30:57 +0300 Subject: [PATCH 18/19] Remove needs --- .github/workflows/test-and-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-build.yaml b/.github/workflows/test-and-build.yaml index b60084d6..95d155ec 100644 --- a/.github/workflows/test-and-build.yaml +++ b/.github/workflows/test-and-build.yaml @@ -52,7 +52,7 @@ jobs: buildForAllSupportedPlatforms: name: Build for ${{ matrix.targetPlatform }} - needs: [checklicense, test, format_check] + needs: [test] if: needs.checklicense.outputs.is_unity_license_set == 'true' runs-on: windows-latest strategy: From 074a722ef3b50311ea85ead4af676dd81957e514 Mon Sep 17 00:00:00 2001 From: baruchInsert-tech Date: Mon, 1 Sep 2025 07:59:20 +0300 Subject: [PATCH 19/19] Add Code styles --- .../.idea/codeStyles/Project.xml | 141 ++++++++++++++++++ .../.idea/codeStyles/codeStyleConfig.xml | 6 + 2 files changed, 147 insertions(+) create mode 100644 .idea/.idea.yahalom/.idea/codeStyles/Project.xml create mode 100644 .idea/.idea.yahalom/.idea/codeStyles/codeStyleConfig.xml diff --git a/.idea/.idea.yahalom/.idea/codeStyles/Project.xml b/.idea/.idea.yahalom/.idea/codeStyles/Project.xml new file mode 100644 index 00000000..78e228a7 --- /dev/null +++ b/.idea/.idea.yahalom/.idea/codeStyles/Project.xml @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.idea/.idea.yahalom/.idea/codeStyles/codeStyleConfig.xml b/.idea/.idea.yahalom/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..44ee3081 --- /dev/null +++ b/.idea/.idea.yahalom/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,6 @@ + + + +