Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[build]
rustc-wrapper = "sccache"
rustflags = ["-C", "force-frame-pointers=yes"]
rustdocflags = ["-D", "warnings"]

Expand Down
3 changes: 1 addition & 2 deletions .cursorrules
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
## General Rules

- Follow all coding and contribution standards defined in [CONTRIBUTING.md](CONTRIBUTING.md).
- Always use `pnpm` for any command execution or package management tasks.
- When creating new files, ensure the appropriate SPDX license header is included.
- Prioritize workspace-level dependency management as outlined in the root configs.
- Maintain concise, friendly, and professional attitude when assisting with development tasks.
- **CRITICAL**: AI agents MUST execute `pnpm -w fix` after EVERY modification of code or documentation, and before signaling completion, to ensure strict adherence to project standards (linting, formatting, license headers).
- **CRITICAL**: AI agents MUST execute `mise run --force fix` after EVERY modification of code or documentation, and before signaling completion, to ensure strict adherence to project standards (linting, formatting, license headers).
- Use `printf` instead of `echo` for shell commands to ensure portability and avoid issues with interpretation of escape sequences.
- Use `jq` (for JSON) and `yq` (for YAML and TOML) instead of `grep`, `sed`, or `awk` when processing structured data.

Expand Down
1 change: 1 addition & 0 deletions .github/actions/init-workflow/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ outputs:
value: |
{
"CI": "true",
"MISE_QUIET": "false",
"CARGO_INCREMENTAL": "0",
"CARGO_NET_GIT_FETCH_WITH_CLI": "true",
"RUST_BACKTRACE": "1"
Expand Down
5 changes: 5 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ runs:
cache-key: "${{ inputs.cache-key }}"
github-token: "${{ inputs.github-token }}"
mise-version: "${{ inputs.mise-version }}"
- name: "Mise setup"
uses: "./.github/actions/shell"
with:
docker-service: "${{ inputs.docker-service }}"
run: "mise setup"
20 changes: 20 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,26 @@
"depNameTemplate": "rustlang/rust",
"datasourceTemplate": "docker",
"versioningTemplate": "regex:^(?<compatibility>nightly-)(?<major>\\d{4})-(?<minor>\\d{2})-(?<patch>\\d{2})$"
},
{
"customType": "regex",
"description": "Update tools in mise.toml using github: shorthand",
"fileMatch": ["^mise\\.toml$"],
"matchStrings": [
"\"github:(?<lookupName>[^/]+/[^\"@/\\s]+)\"\\s*=\\s*\"v?(?<currentValue>[^\"@\\s]+)\"",
"\\[tools\\.\"github:(?<lookupName>[^/]+/[^\"@/\\s]+)\"\\](?:(?:(?!version_prefix|version\\s*=)[\\s\\S])*?)version\\s*=\\s*\"v?(?<currentValue>[^\"@\\s]+)\""
],
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Update tools in mise.toml with version_prefix",
"fileMatch": ["^mise\\.toml$"],
"matchStrings": [
"\\[tools\\.\"github:(?<lookupName>[^/]+/[^\"@/\\s]+)\"\\](?:(?:(?!version\\s*=)[\\s\\S])*?)version_prefix\\s*=\\s*\"(?<versionPrefix>.*?)\"(?:(?:(?!version\\s*=)[\\s\\S])*?)version\\s*=\\s*\"(?<currentValue>.*?)\""
],
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^{{versionPrefix}}(?<version>.*)$"
}
],
"pinDigests": true,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regular.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
fetch-depth: 1
persist-credentials: false
- name: "Run zizmor"
uses: "zizmorcore/zizmor-action@e639db99335bc9038abc0e066dfcd72e23d26fb4" # v0.3.0
uses: "zizmorcore/zizmor-action@135698455da5c3b3e55f73f4419e481ab68cdd95" # v0.4.1
with:
persona: "auditor"
env:
Expand Down
2 changes: 1 addition & 1 deletion .mise-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2026.1.3
v2026.1.4
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict = true
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.14.1
3.14.2
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"evenBetterToml.schema.associations": {
"mise*.toml": "/Users/vadimpiven/Documents/Piven.TECH/mise/schema/mise.json"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
Expand Down
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

## Development Basics

- **Task Runner**: Use **mise** for all tasks. Use `mise run --list` to see available tasks.
- **Task Runner**: Use **mise** for all tasks. Use `mise run` to see available tasks.
- **Testing**: Use `mise run test` to run all checks (unit tests, doctests, and linter).
- **Package Manager**: Use **pnpm** for Node.js dependencies. Do not use `npm` or `yarn`.

## Dependency Management

Expand Down Expand Up @@ -32,5 +31,5 @@ Keep all dependencies in the workspace root.
Before submitting a pull request, ensure your code passes the project checks:

```bash
mise run check
mise run --force test
```
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ resolver = "3"

[workspace.package]
edition = "2024"
version = "0.0.0"
license = "Apache-2.0 OR MIT"

[profile.dev]
Expand Down
2 changes: 2 additions & 0 deletions mise.docker.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# $schema: https://mise.jdx.dev/schema/mise.json

# mise.docker.toml - Docker container-specific overrides
# This file is automatically loaded when MISE_ENV=docker
# It inherits from mise.toml and overrides container-specific settings
Expand Down
Loading