aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
Commit message (Collapse)AuthorAgeFilesLines
* feat(mingling_cli): add metadata and linter commands with cargo analysis魏曹先生4 days1-11/+6
| | | | | Introduce `metadata` and `mlint` subcommands, wire up `cargo_metadata` for manifest analysis, and enable procedural macro support in editors
* feat(mingling_cli): add scaffold for CLI tool魏曹先生4 days1-17/+18
| | | | | Add initial project structure for the mingling-cli scaffolding tool, including Cargo manifest and entry point
* feat: add docs_rs feature and improve documentation build魏曹先生4 days1-0/+1
| | | | | | | | Add `docs_rs` feature flag to enable docs.rs-specific configuration, including `--generate-link-to-definition` and logo display. Include the feature in build scripts, editor settings, and feature constants for consistent documentation generation.
* feat: add structural_renderer and all_serde_fmt cargo features魏曹先生7 days1-0/+2
|
* chore: add picker, parser, and comp features to rust-analyzer config魏曹先生7 days1-9/+14
|
* refactor: rename `mingling_picker` to `arg_picker`魏曹先生7 days1-9/+9
|
* feat(picker2): complete Picker2 prototype魏曹先生8 days1-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Picker2 replaces the original Picker1 with a two-phase (tag → pick) + mask-bitmap architecture, decoupling argument matching from type conversion via a composable matcher pipeline. Architecture - FlagMatcher — boolean flags (--verbose) - ArgMatcher — single flag+value pairs (--name Alice) - MultiArgMatcher — multi-value flag groups (--files a.txt b.txt) - PositionalMatcher — positional arguments, respects `--` - SingleMatcher — composite for Single-type Pickables Types - Flag (Active/Inactive) — semantic bool flag value - String + 14 numeric types via SinglePickable trait - Vec<T> — greedy multi-value (all SinglePickable types) - VecUntil<T> — bounded multi-value via BoundaryCheck trait - VecUntil<T>, pick_string, pick_numbers, pick_bool, pick_flag Style system - UNIX_STYLE (kebab), POWERSHELL_STYLE (Pascal), WINDOWS_STYLE (Pascal) - naming_case auto-conversion via just_fmt integration - Style-aware separator (= for Unix, : for PS/Windows) Infrastructure - internal_repeat! macro generates PickerPattern1..=32 - SinglePickable blanket impl → Pickable - MultiPickableWithBoundary trait with greedy/bounded variants - 151 integration tests - Docs updated for parser feature
* chore: add linked project config for Cargo workspace魏曹先生13 days1-0/+1
|
* Add trailing comma in settings.json魏曹先生2026-06-241-1/+1
|
* Add editor configs for Rust with clippy on save魏曹先生2026-06-241-0/+4