Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(mise.toml): add buni to postintstall #980

Merged
merged 1 commit into from
Dec 1, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ bash <(curl -fsSL https://dot.risunosu.com/wsl)
Clone this repository and run the following command.

```bash
mise i && mise r buni
mise i
```

### 🧵 Lint and Format

The following command will lint and format the code. (including auto-fix)

```bash
mise r check
mise check
```

### ✏️ Commit

The following command will commit the changes interactively.

```bash
mise r commit
mise commit
```

## 📜 License
Expand Down
4 changes: 4 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,3 +225,7 @@ hide = true
# .bashrc is not detected by shfmt --find
run = "git_files=$(git ls-files) && scripts=$(shfmt --find $git_files) && echo wsl/home/.bashrc $scripts"
hide = true

[hooks]
# skip in CI
postinstall = "[[ \"${CI}\" == 'true' ]] || mise run buni"