Skip to content

Commit 48f7bdb

Browse files
Reset SideCar: remove git LFS and NODE binaries from tracking
NODE binaries are downloaded locally by developers, not stored in git. Removed .gitattributes (no more LFS). .gitignore already excludes NODE content.
0 parents  commit 48f7bdb

29 files changed

Lines changed: 2447 additions & 0 deletions

File tree

.cargo/config.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[build]
2+
target-dir = "Target"
3+
rustdocflags = [
4+
"-Zunstable-options",
5+
"--enable-index-page",
6+
]
7+
8+
[net]
9+
git-fetch-with-cli = true
10+
11+
[cargo-new]
12+
vcs = "git"
13+
14+
[unstable]
15+
rustdoc-scrape-examples = true
16+
17+
[profile.dev]
18+
incremental = true
19+
split-debuginfo = "unpacked"
20+
debug = 0
21+
strip = "debuginfo"
22+
panic = "abort"
23+
24+
[profile.dev.package."*"]
25+
opt-level = 3
26+
27+
[profile.release]
28+
opt-level = 3
29+
codegen-units = 1
30+
debug = false
31+
lto = true
32+
panic = "abort"
33+
strip = true
34+
35+
[target.aarch64-apple-darwin]
36+
rustflags = ["-Zshare-generics=y"]
37+
38+
[target.x86_64-apple-darwin]
39+
rustflags = ["-Zshare-generics=y"]

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
custom: https://buy.stripe.com/3csdQZfzn2LDaBOcMN
2+
open_collective: code-editor-land

.github/Update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update: Tue Mar 24 01:58:26 UTC 2026

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
enable-beta-ecosystems: true
3+
4+
updates:
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "daily"
9+
10+
- package-ecosystem: "cargo"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
versioning-strategy: lockfile-only
15+

.github/workflows/Auto.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Auto
2+
3+
concurrency:
4+
group: Auto-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
contents: write
9+
10+
on:
11+
workflow_dispatch:
12+
schedule:
13+
- cron: "0 0 * * *"
14+
workflow_call:
15+
16+
jobs:
17+
Commit:
18+
runs-on: ubuntu-latest
19+
20+
env:
21+
ADBLOCK: true
22+
ASTRO_TELEMETRY_DISABLED: 1
23+
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
24+
AZURE_CORE_COLLECT_TELEMETRY: 0
25+
CHOOSENIM_NO_ANALYTICS: 1
26+
DIEZ_DO_NOT_TRACK: 1
27+
DO_NOT_TRACK: 1
28+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
29+
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
30+
ET_NO_TELEMETRY: 1
31+
GATSBY_TELEMETRY_DISABLED: 1
32+
GATSBY_TELEMETRY_OPT_OUT: 1
33+
GATSBY_TELEMETRY_OPTOUT: 1
34+
GRIT_TELEMETRY_DISABLED: 1
35+
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
36+
HINT_TELEMETRY: off
37+
HOMEBREW_NO_ANALYTICS: 1
38+
INFLUXD_REPORTING_DISABLED: true
39+
ITERATIVE_DO_NOT_TRACK: 1
40+
NEXT_TELEMETRY_DEBUG: 1
41+
NEXT_TELEMETRY_DISABLED: 1
42+
NG_CLI_ANALYTICS: false
43+
NUXT_TELEMETRY_DISABLED: 1
44+
PIN_DO_NOT_TRACK: 1
45+
POWERSHELL_TELEMETRY_OPTOUT: 1
46+
SAM_CLI_TELEMETRY: 0
47+
STNOUPGRADE: 1
48+
STRIPE_CLI_TELEMETRY_OPTOUT: 1
49+
TELEMETRY_DISABLED: 1
50+
TERRAFORM_TELEMETRY: 0
51+
VCPKG_DISABLE_METRICS: 1
52+
53+
steps:
54+
- uses: actions/checkout@v6.0.2
55+
56+
- run: |
57+
echo "Update: $(date)" > .github/Update.md
58+
59+
- run: |
60+
git config user.name "Auto"
61+
git config user.email "Commit@PlayForm.Cloud"
62+
git add .
63+
git commit -a --allow-empty-message -m ""
64+
65+
- uses: ad-m/github-push-action@v1.0.0
66+
with:
67+
github_token: ${{ secrets.GITHUB_TOKEN }}
68+
branch: Current

.github/workflows/Dependabot.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Dependabot
2+
3+
concurrency:
4+
group: Dependabot-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
security-events: write
9+
contents: write
10+
pull-requests: write
11+
12+
on:
13+
workflow_dispatch:
14+
pull_request:
15+
16+
jobs:
17+
Approve:
18+
runs-on: ubuntu-latest
19+
20+
if: ${{ github.actor == 'dependabot[bot]' }}
21+
22+
steps:
23+
- uses: dependabot/fetch-metadata@v2.5.0
24+
with:
25+
github-token: "${{ secrets.GITHUB_TOKEN }}"
26+
27+
- run: gh pr review --approve "$PR_URL"
28+
env:
29+
PR_URL: ${{github.event.pull_request.html_url}}
30+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
31+
32+
Merge:
33+
runs-on: ubuntu-latest
34+
35+
if: ${{ github.actor == 'dependabot[bot]' }}
36+
37+
steps:
38+
- uses: dependabot/fetch-metadata@v2.5.0
39+
with:
40+
github-token: "${{ secrets.GITHUB_TOKEN }}"
41+
42+
- run: gh pr merge --auto --merge "$PR_URL"
43+
env:
44+
PR_URL: ${{github.event.pull_request.html_url}}
45+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/GitHub.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: GitHub
2+
3+
concurrency:
4+
group: GitHub-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
issues: write
9+
pull-requests: write
10+
11+
on:
12+
issues:
13+
types: [opened]
14+
pull_request:
15+
types: [opened]
16+
17+
jobs:
18+
Assign:
19+
runs-on: ubuntu-latest
20+
21+
env:
22+
ADBLOCK: true
23+
ASTRO_TELEMETRY_DISABLED: 1
24+
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
25+
AZURE_CORE_COLLECT_TELEMETRY: 0
26+
CHOOSENIM_NO_ANALYTICS: 1
27+
DIEZ_DO_NOT_TRACK: 1
28+
DO_NOT_TRACK: 1
29+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
30+
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
31+
ET_NO_TELEMETRY: 1
32+
GATSBY_TELEMETRY_DISABLED: 1
33+
GATSBY_TELEMETRY_OPT_OUT: 1
34+
GATSBY_TELEMETRY_OPTOUT: 1
35+
GRIT_TELEMETRY_DISABLED: 1
36+
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
37+
HINT_TELEMETRY: off
38+
HOMEBREW_NO_ANALYTICS: 1
39+
INFLUXD_REPORTING_DISABLED: true
40+
ITERATIVE_DO_NOT_TRACK: 1
41+
NEXT_TELEMETRY_DEBUG: 1
42+
NEXT_TELEMETRY_DISABLED: 1
43+
NG_CLI_ANALYTICS: false
44+
NUXT_TELEMETRY_DISABLED: 1
45+
PIN_DO_NOT_TRACK: 1
46+
POWERSHELL_TELEMETRY_OPTOUT: 1
47+
SAM_CLI_TELEMETRY: 0
48+
STNOUPGRADE: 1
49+
STRIPE_CLI_TELEMETRY_OPTOUT: 1
50+
TELEMETRY_DISABLED: 1
51+
TERRAFORM_TELEMETRY: 0
52+
VCPKG_DISABLE_METRICS: 1
53+
54+
steps:
55+
- uses: pozil/auto-assign-issue@v2.2.0
56+
with:
57+
repo-token: ${{ secrets.GITHUB_TOKEN }}
58+
assignees: NikolaRHristov
59+
numOfAssignee: 1

.github/workflows/Rust.yml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: Rust
2+
3+
concurrency:
4+
group: Rust-${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
security-events: write
9+
10+
on:
11+
workflow_dispatch:
12+
push:
13+
branches: [Current]
14+
pull_request:
15+
branches: [Current]
16+
workflow_call:
17+
18+
jobs:
19+
Build:
20+
runs-on: ubuntu-latest
21+
22+
env:
23+
ADBLOCK: true
24+
ASTRO_TELEMETRY_DISABLED: 1
25+
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
26+
AZURE_CORE_COLLECT_TELEMETRY: 0
27+
CHOOSENIM_NO_ANALYTICS: 1
28+
DIEZ_DO_NOT_TRACK: 1
29+
DO_NOT_TRACK: 1
30+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
31+
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
32+
ET_NO_TELEMETRY: 1
33+
GATSBY_TELEMETRY_DISABLED: 1
34+
GATSBY_TELEMETRY_OPT_OUT: 1
35+
GATSBY_TELEMETRY_OPTOUT: 1
36+
GRIT_TELEMETRY_DISABLED: 1
37+
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
38+
HINT_TELEMETRY: off
39+
HOMEBREW_NO_ANALYTICS: 1
40+
INFLUXD_REPORTING_DISABLED: true
41+
ITERATIVE_DO_NOT_TRACK: 1
42+
NEXT_TELEMETRY_DEBUG: 1
43+
NEXT_TELEMETRY_DISABLED: 1
44+
NG_CLI_ANALYTICS: false
45+
NUXT_TELEMETRY_DISABLED: 1
46+
PIN_DO_NOT_TRACK: 1
47+
POWERSHELL_TELEMETRY_OPTOUT: 1
48+
SAM_CLI_TELEMETRY: 0
49+
STNOUPGRADE: 1
50+
STRIPE_CLI_TELEMETRY_OPTOUT: 1
51+
TELEMETRY_DISABLED: 1
52+
TERRAFORM_TELEMETRY: 0
53+
VCPKG_DISABLE_METRICS: 1
54+
55+
strategy:
56+
matrix:
57+
toolchain: ["stable", "nightly"]
58+
59+
steps:
60+
- uses: actions/checkout@v6.0.2
61+
62+
- uses: actions-rs/toolchain@v1.0.7
63+
with:
64+
profile: minimal
65+
toolchain: ${{ matrix.toolchain }}
66+
67+
- uses: actions/cache@v5.0.3
68+
with:
69+
path: |
70+
~/.cargo/bin/
71+
~/.cargo/registry/index/
72+
~/.cargo/registry/cache/
73+
~/.cargo/git/db/
74+
target/
75+
Target/
76+
key: ${{ runner.os }}-cargo-${{ hashFiles('./Cargo.toml') }}
77+
- uses: actions-rs/cargo@v1.0.3
78+
with:
79+
command: build
80+
args: --release --all-features --manifest-path ./Cargo.toml

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/Target/*
2+
3+
!/Target/debug
4+
!/Target/release
5+
!/Target/x86_64-pc-windows-msvc
6+
7+
/Target/debug/*
8+
/Target/release/*
9+
/Target/x86_64-pc-windows-msvc/*
10+
11+
!/Target/debug/bundle
12+
!/Target/debug/bundle/nsis
13+
!/Target/debug/bundle/msi
14+
!/Target/debug/bundle/appimage
15+
16+
!/Target/debug/bundle/nsis/*.exe
17+
!/Target/debug/bundle/msi/*.msi
18+
!/Target/debug/bundle/appimage/*.AppImage
19+
20+
!/Target/debug/*.exe
21+
22+
!/Target/release/bundle
23+
!/Target/release/bundle/nsis
24+
!/Target/release/bundle/msi
25+
!/Target/release/bundle/appimage
26+
27+
!/Target/release/bundle/nsis/*.exe
28+
!/Target/release/bundle/msi/*.msi
29+
!/Target/release/bundle/appimage/*.AppImage
30+
31+
!/Target/release/*.exe
32+
33+
!/Target/x86_64-pc-windows-msvc/bundle
34+
!/Target/x86_64-pc-windows-msvc/bundle/nsis
35+
!/Target/x86_64-pc-windows-msvc/bundle/msi
36+
!/Target/x86_64-pc-windows-msvc/bundle/appimage
37+
38+
!/Target/x86_64-pc-windows-msvc/bundle/nsis/*.exe
39+
!/Target/x86_64-pc-windows-msvc/bundle/msi/*.msi
40+
!/Target/x86_64-pc-windows-msvc/bundle/appimage/*.AppImage
41+
42+
!/Target/x86_64-pc-windows-msvc/*.exe
43+
44+
Temporary/**
45+
!Temporary/.gitkeep
46+
47+
/aarch64-apple-darwin/NODE/**/*
48+
!/aarch64-apple-darwin/.gitkeep
49+
!/aarch64-apple-darwin/NODE/.gitkeep
50+
51+
/aarch64-unknown-linux-gnu/NODE/**
52+
!/aarch64-unknown-linux-gnu/.gitkeep
53+
!/aarch64-unknown-linux-gnu/NODE/.gitkeep
54+
55+
/x86_64-apple-darwin/NODE/**/*
56+
!/x86_64-apple-darwin/.gitkeep
57+
!/x86_64-apple-darwin/NODE/.gitkeep
58+
59+
/x86_64-pc-windows-msvc/NODE/**
60+
!/x86_64-pc-windows-msvc/.gitkeep
61+
!/x86_64-pc-windows-msvc/NODE/.gitkeep
62+
63+
/x86_64-unknown-linux-gnu/NODE/**
64+
!/x86_64-unknown-linux-gnu/.gitkeep
65+
!/x86_64-unknown-linux-gnu/NODE/.gitkeep
66+
67+
Documentation/Rust/debug
68+
Documentation/Rust/release
69+
Documentation/Rust/.rustc_info.json
70+
Documentation/Rust/.rustdoc_fingerprint.json
71+
Documentation/Rust/CACHEDIR.TAG

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
- Initial version

0 commit comments

Comments
 (0)