Skip to content

Commit a5ee305

Browse files
conf: patchlift
1 parent 56e6a69 commit a5ee305

File tree

4 files changed

+96
-10
lines changed

4 files changed

+96
-10
lines changed

commitlint.config.mjs

+8-7
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ export default {
99
error,
1010
'always',
1111
[
12-
'build',
13-
'chore',
14-
'misc',
15-
'other',
16-
'ci',
17-
'docs',
1812
'feat',
1913
'fix',
2014
'perf',
15+
'build',
16+
'conf',
17+
'test',
18+
'docs',
19+
'ci',
20+
'chore',
2121
'refactor',
2222
'revert',
2323
'style',
24-
'test',
24+
'misc',
25+
'other',
2526
],
2627
],
2728
'subject-case': [disable]

deno.lock

+80-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mise.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,11 @@ cargo watch --clear --watch "$PWD" --exec "$CMD_NO_WHITESPACE" "$@"
6363
run = "cargo check --all-targets"
6464

6565
[tasks."fix"]
66-
run = "cargo fix --workspace --allow-dirty --allow-staged"
66+
env = { __CARGO_FIX_YOLO = 'yeah' }
67+
run = "cargo clippy --fix --allow-dirty --allow-staged"
6768

6869
[tasks."gen:readme"]
69-
run = "./README.ts > README.md"
70+
run = "./README.ts --output README.md"
7071
sources = ["README.ts"]
7172
outputs = ["README.md"]
7273

patchlift.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env -S deno run --allow-write --allow-read --allow-run=bash --allow-net --allow-env --allow-sys --no-lock
2+
3+
import { applyToPublicRustCrateDir } from "jsr:@dengorbachev/[email protected]"
4+
5+
await applyToPublicRustCrateDir(import.meta.dirname)

0 commit comments

Comments
 (0)