update CLAUDE.md with fmt/lint commands and Go pattern
Some checks failed
build / build (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 02:14:37 +01:00
parent 18e0c4f99a
commit 329e9341d9

View File

@@ -18,6 +18,12 @@ nix build .#packages.x86_64-linux.<package-name>
# Validate flake # Validate flake
nix flake check nix flake check
# Format nix files
nix fmt
# Lint nix files
statix check
# Update flake inputs # Update flake inputs
nix flake update nix flake update
``` ```
@@ -39,7 +45,8 @@ nix flake update
- **AppImage**: `appimageTools.wrapType2` (see `poe-sidekick`) - **AppImage**: `appimageTools.wrapType2` (see `poe-sidekick`)
- **Electron/Yarn**: `yarnConfigHook` + `yarnBuildHook` + `fetchYarnDeps` (see `awakened-poe-trade`) - **Electron/Yarn**: `yarnConfigHook` + `yarnBuildHook` + `fetchYarnDeps` (see `awakened-poe-trade`)
- **Qt6/Meson**: `qt6Packages.callPackage` + `wrapQtAppsHook` (see `path-of-building-*`) - **Qt6/Meson**: `qt6Packages.callPackage` + `wrapQtAppsHook` (see `path-of-building-*`)
- **Rust/Cargo**: `rustPlatform.buildRustPackage` + `useFetchCargoVendor` (see `noita-entangled-worlds`) - **Rust/Cargo**: `rustPlatform.buildRustPackage` (see `noita-entangled-worlds`)
- **Go**: `buildGoModule` (see `forgejo-mcp`)
- **Binary/.NET**: `fetchurl` + `makeWrapper` with `makeLibraryPath` (see `vintagestory`) - **Binary/.NET**: `fetchurl` + `makeWrapper` with `makeLibraryPath` (see `vintagestory`)
## Commit Style ## Commit Style