diff --git a/.editorconfig b/.editorconfig index f166060..45d1700 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,15 +3,25 @@ root = true [*] charset = utf-8 -indent_style = space +end_of_line = lf indent_size = 2 +indent_style = space insert_final_newline = true trim_trailing_whitespace = true -[*.ts] -quote_type = single -ij_typescript_use_double_quotes = false +[*.{diff,patch}] +end_of_line = unset +insert_final_newline = unset +trim_trailing_whitespace = unset [*.md] max_line_length = off trim_trailing_whitespace = false + +[*.ts] +quote_type = single +ij_typescript_use_double_quotes = false + +[Makefile] +indent_size = 1 +indent_style = tab diff --git a/.github/workflows/post-compare-link.yaml b/.github/workflows/post-compare-link.yaml index d556f4c..c8c0ea2 100644 --- a/.github/workflows/post-compare-link.yaml +++ b/.github/workflows/post-compare-link.yaml @@ -12,7 +12,7 @@ jobs: post-compare-link: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v7 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: NuschtOS/flake-lock-compare-action@main diff --git a/.github/workflows/template-sync.yaml b/.github/workflows/template-sync.yaml index 4da433c..fa6c007 100644 --- a/.github/workflows/template-sync.yaml +++ b/.github/workflows/template-sync.yaml @@ -13,7 +13,7 @@ jobs: if: github.repository != 'NuschtOS/template' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v7 + - uses: actions/checkout@v6 with: token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} - uses: AndreasAugustin/actions-template-sync@v2